We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd72f2e + 7c8523e commit 696412dCopy full SHA for 696412d
src/ci/init_repo.sh
@@ -61,7 +61,8 @@ for module in $modules; do
61
if [ "$module" = src/llvm ]; then
62
commit="$(git ls-tree HEAD src/llvm | awk '{print $3}')"
63
git rm src/llvm
64
- curl -sSL -O "https://github.com/rust-lang/llvm/archive/$commit.tar.gz"
+ retry sh -c "rm -f $commit.tar.gz && \
65
+ curl -sSL -O https://github.com/rust-lang/llvm/archive/$commit.tar.gz"
66
tar -C src/ -xf "$commit.tar.gz"
67
rm "$commit.tar.gz"
68
mv "src/llvm-$commit" src/llvm
0 commit comments