CPack/NSIS: Add support for unquoted (legacy) uninstaller strings

This commit is contained in:
Marc Jeanmougin
2022-03-21 19:22:34 +01:00
committed by Brad King
parent b795c96727
commit 5d2ceaada8

View File

@@ -932,7 +932,11 @@ Function .onInit
;Run the uninstaller
uninst:
ClearErrors
StrCpy $2 $0 1
StrCmp '"' $2 0 +3 ; checks if string is quoted (CPack before v3.20.6 did not quote it)
ExecWait '$0 /S'
Goto +2
ExecWait '"$0" /S'
IfErrors uninst_failed inst
uninst_failed: