Skip to content

Commit

Permalink
fix(build): fix CNDL0012
Browse files Browse the repository at this point in the history
  • Loading branch information
ilharp committed May 11, 2023
1 parent 4929d47 commit c84e08a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/build/templates/msi/index.wxs.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@
<UIRef Id="WixUI_FeatureTree" />
<UIRef Id="WixUI_ErrorProgressText" />

<Property Id="PrerequisiteEdgeInstalled">
<Property Id="PREREQUISITEEDGEINSTALLED">
<RegistrySearch
Id="RegistrySearchEdgeInstalled"
Root="HKLM"
Expand All @@ -284,7 +284,7 @@
Win64="no"
/>
</Property>
<Property Id="PrerequisiteWvrtInstalled">
<Property Id="PREREQUISITEWVRTINSTALLED">
<RegistrySearch
Id="RegistrySearchWvrtInstalled"
Root="HKLM"
Expand Down Expand Up @@ -329,11 +329,11 @@
>NOT Installed</Custom>

<Custom Action="CustomActionSetupMicrosoftEdge" After="InstallFiles">
<![CDATA[(&FeaturePuppeteerSupport = 3) AND NOT (PrerequisiteEdgeInstalled)]]>
<![CDATA[(&FeaturePuppeteerSupport = 3) AND NOT (PREREQUISITEEDGEINSTALLED)]]>
</Custom>

<Custom Action="CustomActionSetupWebview2" After="InstallFiles">
<![CDATA[(&FeatureConsoleWindow = 3) AND NOT (PrerequisiteWvrtInstalled)]]>
<![CDATA[(&FeatureConsoleWindow = 3) AND NOT (PREREQUISITEWVRTINSTALLED)]]>
</Custom>
</InstallExecuteSequence>
</Product>
Expand Down

0 comments on commit c84e08a

Please sign in to comment.