Skip to content

Commit 6183cce

Browse files
authored
GHA: correct installer bundle MSI chain
- `True` is the proper boolean value for the msbuild preprocessor - `InstallAMD64SDK` is the proper name for the Android x64 SDK condition
1 parent ca4bc79 commit 6183cce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

platforms/Windows/bundle/installer.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<MsiProperty Name="INSTALLROOT" Value="[InstallRoot]" />
109109
</MsiPackage>
110110

111-
<?if $(IncludeAndroid) == true?>
111+
<?if $(IncludeAndroid) == True?>
112112
<MsiPackage
113113
SourceFile="!(bindpath.platform.android)\android.msi"
114114
InstallCondition="OptionsInstallAndroidPlatform = 1"
@@ -122,7 +122,7 @@
122122
</MsiPackage>
123123
<?endif?>
124124

125-
<?if $(IncludeWindows) == true?>
125+
<?if $(IncludeWindows) == True?>
126126
<MsiPackage
127127
SourceFile="!(bindpath.platform.windows)\windows.msi"
128128
InstallCondition="OptionsInstallWindowsPlatform = 1"

platforms/Windows/platforms/android/android.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2241,7 +2241,7 @@
22412241

22422242
<?if $(IncludeX64) = True?>
22432243
<Feature Id="amd64" AllowAbsent="yes" Title="!(loc.Sdk_ProductName_Android_amd64)">
2244-
<Level Condition="InstallX64SDK = 0" Value="0" />
2244+
<Level Condition="InstallAMD64SDK = 0" Value="0" />
22452245

22462246
<ComponentGroupRef Id="XCTest.x64" />
22472247
<ComponentGroupRef Id="Testing.x64" />

0 commit comments

Comments
 (0)