diff options
author | Ruben Pollan <meskio@sindominio.net> | 2019-10-22 11:36:23 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2019-10-22 13:37:35 +0200 |
commit | be89b71250eb840d31a853a98487955e3315b494 (patch) | |
tree | 0a8aade3ded40f13840ae8da71caa1f661829aa3 /branding | |
parent | 0755ae5cdb46c1a5ac62c73790ba3de5b040ceab (diff) |
[pkg] install the right helper service on windows
We were trying to install the wrong path for the bitmask helper service.
- Resolves: #199
Diffstat (limited to 'branding')
-rwxr-xr-x | branding/templates/windows/template.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/branding/templates/windows/template.nsi b/branding/templates/windows/template.nsi index 1f7715a..2be707b 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 |