Skip to content

Commit f4e1b41

Browse files
jasonhinkledevelar
authored andcommitted
fix(nsis): error on win when APP_OUT_FILE has spaces
1 parent 3c06839 commit f4e1b41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/win/installer.nsi.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Name "${APP_NAME}"
2323
BrandingText "${APP_NAME} ${APP_VERSION}"
2424

2525
# define the resulting installer's name
26-
OutFile ${APP_OUT_FILE}
26+
OutFile "${APP_OUT_FILE}"
2727

2828
# set the installation directory
2929
InstallDir "$PROGRAMFILES\${APP_NAME}\"

0 commit comments

Comments
 (0)