mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
fix: if statement syntax error
This commit is contained in:
@@ -153,12 +153,12 @@ jobs:
|
|||||||
- name: Verify Windows build success
|
- name: Verify Windows build success
|
||||||
if: ${{ startsWith(matrix.os, 'win') }}
|
if: ${{ startsWith(matrix.os, 'win') }}
|
||||||
run: |
|
run: |
|
||||||
if [[ "${{ matrix.os }}" == *"arm"* ]]; then
|
if ($env:matrix_os -like "*arm*") {
|
||||||
if (-not (Test-Path "./dist/swingmusic_arm64.exe")) {
|
if (-not (Test-Path "./dist/swingmusic_arm64.exe")) {
|
||||||
Write-Host "Build failed"
|
Write-Host "Build failed"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
else
|
} else {
|
||||||
if (-not (Test-Path "./dist/swingmusic.exe")) {
|
if (-not (Test-Path "./dist/swingmusic.exe")) {
|
||||||
Write-Host "Build failed"
|
Write-Host "Build failed"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user