We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a981bdc commit efc46c3Copy full SHA for efc46c3
.evergreen/scripts/valgrind-installer.sh
@@ -8,7 +8,9 @@ set -o pipefail
8
cd "$(mktemp -d)"
9
10
# https://valgrind.org/downloads/current.html
11
-curl -sSL -m 60 --retry 5 -o valgrind-3.24.0.tar.bz2 https://sourceware.org/pub/valgrind/valgrind-3.24.0.tar.bz2
+for _ in $(seq 5); do
12
+ curl -L -m 60 -o valgrind-3.24.0.tar.bz2 https://sourceware.org/pub/valgrind/valgrind-3.24.0.tar.bz2 && break
13
+done
14
cat >checksum.txt <<<'6fc0470fedc0d85dae3e042297cabd13c6100749 *valgrind-3.24.0.tar.bz2'
15
sha1sum -c checksum.txt >/dev/null
16
0 commit comments