From 63ee4cf152d7bff04d8c9f90877551a3a5d7697f Mon Sep 17 00:00:00 2001 From: develar Date: Wed, 7 Sep 2016 21:16:59 +0200 Subject: [PATCH] fix(nsis): uninstaller path should be not quoted #722 --- templates/nsis/multiUser.nsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/nsis/multiUser.nsh b/templates/nsis/multiUser.nsh index c61bb470dac..7642ec9679a 100644 --- a/templates/nsis/multiUser.nsh +++ b/templates/nsis/multiUser.nsh @@ -70,7 +70,7 @@ Var installMode WriteRegStr SHCTX "${UNINSTALL_REGISTRY_KEY}" DisplayName "${UNINSTALL_DISPLAY_NAME} (only current user)" WriteRegStr SHCTX "${UNINSTALL_REGISTRY_KEY}" UninstallString '"$INSTDIR\${UNINSTALL_FILENAME}" /currentuser' ${endif} - WriteRegStr SHCTX "${UNINSTALL_REGISTRY_KEY}" UninstallerPath '"$INSTDIR\${UNINSTALL_FILENAME}"' + WriteRegStr SHCTX "${UNINSTALL_REGISTRY_KEY}" UninstallerPath "$INSTDIR\${UNINSTALL_FILENAME}" WriteRegStr SHCTX "${UNINSTALL_REGISTRY_KEY}" "DisplayVersion" "${VERSION}" WriteRegStr SHCTX "${UNINSTALL_REGISTRY_KEY}" "DisplayIcon" "$appExe,0"