From be89b71250eb840d31a853a98487955e3315b494 Mon Sep 17 00:00:00 2001
From: Ruben Pollan <meskio@sindominio.net>
Date: Tue, 22 Oct 2019 11:36:23 +0200
Subject: [PATCH] [pkg] install the right helper service on windows

We were trying to install the wrong path for the bitmask helper service.

- Resolves: #199
---
 branding/templates/windows/template.nsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/branding/templates/windows/template.nsi b/branding/templates/windows/template.nsi
index 1f7715a1..2be707b0 100755
--- a/branding/templates/windows/template.nsi
+++ b/branding/templates/windows/template.nsi
@@ -87,7 +87,7 @@ SectionEnd
 
 Section "InstallService"
   ; Easy service management thanks to nssm
-  ExecWait '"$INSTDIR\nssm.exe" install $applicationNameLower-helper "$INSTDIR\bitmask-helper.exe"'
+  ExecWait '"$INSTDIR\nssm.exe" install $applicationNameLower-helper "$INSTDIR\bitmask_helper.exe"'
   ExecWait '"$INSTDIR\nssm.exe" set $applicationNameLower-helper AppDirectory "$INSTDIR"'
   ExecWait '"$INSTDIR\nssm.exe" start $applicationNameLower-helper'
 SectionEnd
-- 
GitLab