Fix arguments for uninstall.exe

refs #11449
This commit is contained in:
Gunnar Beutner 2016-04-14 07:51:23 +02:00
parent fd16e2d7d6
commit 233f8ffb17
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ static int UpgradeNSIS(void)
if (!Utility::PathExists(uninstallerPath)) if (!Utility::PathExists(uninstallerPath))
return 0; return 0;
ExecuteCommand(uninstallerPath, "/S \"_?=" + installPath + "\""); ExecuteCommand(uninstallerPath, "/S _?=" + installPath);
_unlink(uninstallerPath.CStr()); _unlink(uninstallerPath.CStr());