Skip to content

Commit e4cfb0d

Browse files
committed
Add a retry to the musl download
This download has occasionally been failing in CI recently. Add a retry so this is less likely to cause the workflow to fail.
1 parent 339511f commit e4cfb0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/download-musl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fname=musl-1.2.5.tar.gz
77
sha=a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4
88

99
mkdir musl
10-
curl -L "https://musl.libc.org/releases/$fname" -O
10+
curl -L "https://musl.libc.org/releases/$fname" -O --retry 5
1111

1212
case "$(uname -s)" in
1313
MINGW*)

0 commit comments

Comments
 (0)