summaryrefslogtreecommitdiff
path: root/branding/templates/windows/template.nsi
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2019-07-18 16:07:45 +0200
committerRuben Pollan <meskio@sindominio.net>2019-08-05 11:46:18 -0400
commitba05fbef8501d4dc09c1d41051ca1e820d25bf1d (patch)
tree8edcbae1e2e39a8ad172982371e92a736054e619 /branding/templates/windows/template.nsi
parent1106467f972e6e5d6781412e999d7c44195bb2df (diff)
[pkg] fix windows paths after testing
Diffstat (limited to 'branding/templates/windows/template.nsi')
-rwxr-xr-xbranding/templates/windows/template.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/branding/templates/windows/template.nsi b/branding/templates/windows/template.nsi
index f644b89..00118e1 100755
--- a/branding/templates/windows/template.nsi
+++ b/branding/templates/windows/template.nsi
@@ -4,7 +4,7 @@ SetCompressor /SOLID lzma
!include "MUI2.nsh"
Name "$applicationName"
-Outfile "..\bin\$applicationName-$version.exe"
+Outfile "..\dist\$applicationName-$version.exe"
;TODO make the installdir configurable - and set it in the registry.
InstallDir "C:\Program Files\$applicationName\"
RequestExecutionLevel admin
@@ -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