Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/wordweaver.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Name "Wordweaver"

; The file to write
OutFile "..\dist\Wordweaver-install.exe"
OutFile "dist\Wordweaver-install.exe"

; Request application privileges for Windows Vista and higher
RequestExecutionLevel admin
Expand Down Expand Up @@ -42,7 +42,7 @@ Section "Wordweaver (required)"
SetOutPath $INSTDIR

; Put file there
File "..\dist\Wordweaver.exe"
File "dist\Wordweaver\Wordweaver.exe"

; Write the installation path into the registry
WriteRegStr HKLM "SOFTWARE\Wordweaver" "Install_Dir" "$INSTDIR"
Expand Down