Skip to content

Commit 1682583

Browse files
Steelskincompnerd
authored andcommitted
Installer: Properly include Android platform
`if (true)` is not valid PowerShell. This updates the test to properly include the Android platform if needed.
1 parent 1a4bd21 commit 1682583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/swift-toolchain.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4348,8 +4348,8 @@ jobs:
43484348
43494349
- name: Build installer bundle
43504350
run: |
4351-
$Platforms=@( "windows" )
4352-
if (${{ inputs.build_android }}) {
4351+
$Platforms=@("windows")
4352+
if ("${{ inputs.build_android }}" -eq "true") {
43534353
$Platforms=@("android") + $Platforms
43544354
}
43554355

0 commit comments

Comments
 (0)