Skip to content

Commit 87d1a70

Browse files
committed
Unzip exits with a non zero exit code so the remove of the zip file should be as an or statement.
1 parent 46c7bd2 commit 87d1a70

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/build/windows/download-configure.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ download_configure()
2323
download_release "Configure" "$version" "Configure.Release.arm64.exe"
2424
download_release "Configure" "$version" "Configure.Release.x86.exe"
2525
download_release "Configure" "$version" "files.zip"
26-
unzip -o "files.zip"
27-
rm "files.zip"
26+
unzip -o "files.zip" || rm "files.zip"
2827

2928
cd ..
3029
}

0 commit comments

Comments
 (0)