Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update WIX Firefox CustomAction #325

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified install/FirefoxAction.CA.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions install/web-eid.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
<Custom Action="SetExtensionSettingsForNoInstall" Before="InstallInitialize" />
<Custom Action="SetExtensionSettingsForRemove" Before="InstallInitialize" />
<Custom Action="ExtensionSettingsInstall" Before="InstallFinalize"
Condition="FIREFOXINSTALL=1 AND NOT ((REMOVE=&quot;ALL&quot;) AND (NOT UPGRADINGPRODUCTCODE))" />
Condition="FIREFOXINSTALL=1 AND NOT REMOVE=&quot;ALL&quot;" />
<Custom Action="ExtensionSettingsNoInstall" Before="InstallFinalize"
Condition="NOT (FIREFOXINSTALL=1) AND NOT ((REMOVE=&quot;ALL&quot;) AND (NOT UPGRADINGPRODUCTCODE))" />
Condition="FIREFOXINSTALL=0 AND NOT REMOVE=&quot;ALL&quot;" />
<Custom Action="ExtensionSettingsRemove" Before="InstallFinalize"
Condition="(REMOVE=&quot;ALL&quot;) AND (NOT UPGRADINGPRODUCTCODE)" />
Condition="REMOVE=&quot;ALL&quot; AND NOT UPGRADINGPRODUCTCODE" />
</InstallExecuteSequence>

<StandardDirectory Id="ProgramFiles6432Folder">
Expand Down
Loading