Skip to content

Commit 46c7bd2

Browse files
committed
Always remove the downloaded files.zip file.
1 parent 5a57486 commit 46c7bd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ 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" && rm "files.zip"
26+
unzip -o "files.zip"
27+
rm "files.zip"
2728

2829
cd ..
2930
}

0 commit comments

Comments
 (0)