Skip to content

Commit

Permalink
msi: Add missing part to uninstall 'RemoveParts' action
Browse files Browse the repository at this point in the history
This was missed in dbe0197
  • Loading branch information
cfergeau authored and praveenkumar committed Aug 30, 2021
1 parent 2a2d933 commit 4390f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/windows/product.wxs.in
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
</Directory>
<SetProperty Action="CAJoinBundle" Id="JoinBundle" Value='"[System64Folder]cmd.exe" /c cd /d "[INSTALLDIR]" &amp;&amp; copy /b $(var.crcBundleName).0+$(var.crcBundleName).1+$(var.crcBundleName).2+$(var.crcBundleName).3 $(var.crcBundleName)' Before="JoinBundle" Sequence="execute"/>
<CustomAction Id="JoinBundle" BinaryKey="WixCA" DllEntry="WixQuietExec" Execute="deferred" Impersonate="no" />
<SetProperty Action="CARemoveParts" Id="RemoveParts" Value='"[System64Folder]cmd.exe" /c cd /d "[INSTALLDIR]" &amp;&amp; del /f /q $(var.crcBundleName).0 $(var.crcBundleName).1 $(var.crcBundleName).2' Before="RemoveParts" Sequence="execute"/>
<SetProperty Action="CARemoveParts" Id="RemoveParts" Value='"[System64Folder]cmd.exe" /c cd /d "[INSTALLDIR]" &amp;&amp; del /f /q $(var.crcBundleName).0 $(var.crcBundleName).1 $(var.crcBundleName).2 $(var.crcBundleName).3' Before="RemoveParts" Sequence="execute"/>
<CustomAction Id="RemoveParts" BinaryKey="WixCA" DllEntry="WixQuietExec" Execute="deferred" Impersonate="no" />

<SetProperty Action="CACreateCrcUsersGroup" Id="CreateCrcGroup" Value='"[System64Folder]cmd.exe" /c net localgroup crc-users /comment:"Group for CodeReady Containers users" /add' Before="CreateCrcGroup" Sequence="execute"/>
Expand Down

0 comments on commit 4390f75

Please sign in to comment.