Skip to content

Commit

Permalink
Merge pull request #238 from chewing/fix-allow-nsis-uninstall-fail
Browse files Browse the repository at this point in the history
fix: allow NSIS uninstall custom action to fail
  • Loading branch information
kanru authored Dec 30, 2024
2 parents 7f831a1 + 9263632 commit 0c44e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/windows-chewing-tsf.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@

<CustomAction Id="RemoveNsisInst32" Property="NSISUNINSTALLCMD32"
ExeCommand="/S _?=[NSISUNINSTALLFOLDER32]"
Execute="deferred" Impersonate="no" Return="check" />
Execute="deferred" Impersonate="no" Return="ignore" />
<CustomAction Id="RemoveNsisInst64" Property="NSISUNINSTALLCMD64"
ExeCommand="/S _?=[NSISUNINSTALLFOLDER64]"
Execute="deferred" Impersonate="no" Return="check" />
Execute="deferred" Impersonate="no" Return="ignore" />
<InstallExecuteSequence>
<Custom Action="RemoveNsisInst32" After="InstallInitialize"
Condition='NSISUNINSTALLCMD32&lt;&gt;""' />
Expand Down

0 comments on commit 0c44e80

Please sign in to comment.