Skip to content

Commit

Permalink
(chocolateyGH-641) Allow more exit codes for install shield
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed May 1, 2016
1 parent c3c8e5a commit 650266b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public InstallShieldInstaller()
OtherUninstallOptions = "/sms";
// http://helpnet.installshield.com/installshield18helplib/IHelpSetup_EXEErrors.htm
ValidInstallExitCodes = new List<int> {0, 1641, 3010};
ValidUninstallExitCodes = new List<int> {0, 1641, 3010};
ValidUninstallExitCodes = new List<int> { 0, 1605, 1614, 1641, 3010 };
}

public override InstallerType InstallerType
Expand Down

0 comments on commit 650266b

Please sign in to comment.