Skip to content

Commit

Permalink
fix(nsis): uninstaller path should be not quoted #722
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Sep 7, 2016
1 parent 211d63f commit 63ee4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/nsis/multiUser.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 63ee4cf

Please sign in to comment.