| ... | ... | @@ -10,7 +10,7 @@ TARBALL="llvm+clang+lld-13.0.0-x86_64-windows-msvc-release-mt.tar.xz" |
| 10 | 10 | |
| 11 | 11 | pip install s3cmd |
| 12 | 12 | wget -nv "https://ziglang.org/deps/$TARBALL" |
| 13 | | # If the first extraction fails, re-try it once without overwriting old files; |
| 14 | | # this can happen if the tarball contains symlinks that are in the table of contents |
| 15 | | # before the files that they point to. |
| 16 | | tar xf $TARBALL || tar xfk $TARBALL |
| 13 | # If the first extraction fails, re-try it once; this can happen if the tarball |
| 14 | # contains symlinks that are in the table of contents before the files that |
| 15 | # they point to. |
| 16 | tar -xf $TARBALL || tar -xf --overwrite $TARBALL |