From 517a90be827d8d01cda05ff0569260657284f784 Mon Sep 17 00:00:00 2001 From: develar Date: Wed, 14 Sep 2016 18:13:03 +0200 Subject: [PATCH] fix(nsis): _? must be last #735 "the last parameter used in the command line and must not contain any quotes, even if the path contains spaces" --- templates/nsis/installSection.nsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/nsis/installSection.nsh b/templates/nsis/installSection.nsh index 0d6903f907b..b2bfe02cbb5 100644 --- a/templates/nsis/installSection.nsh +++ b/templates/nsis/installSection.nsh @@ -25,7 +25,7 @@ ${else} StrCpy $0 "/allusers" ${endif} - ExecWait '"$PLUGINSDIR\old-uninstaller.exe" "_?=$R1" /S /KEEP_APP_DATA $0' + ExecWait '"$PLUGINSDIR\old-uninstaller.exe" /S /KEEP_APP_DATA $0 _?=$R1' ${endif} ${endif} !macroend