Skip to content

Commit

Permalink
fix(nsis): error on win when APP_OUT_FILE has spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonhinkle authored and develar committed Feb 25, 2016
1 parent 3c06839 commit f4e1b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/win/installer.nsi.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Name "${APP_NAME}"
BrandingText "${APP_NAME} ${APP_VERSION}"

# define the resulting installer's name
OutFile ${APP_OUT_FILE}
OutFile "${APP_OUT_FILE}"

# set the installation directory
InstallDir "$PROGRAMFILES\${APP_NAME}\"
Expand Down

0 comments on commit f4e1b41

Please sign in to comment.