Skip to content

Commit

Permalink
Fixes LLVM downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Sep 14, 2023
1 parent 7aadfe8 commit 84427a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
parallel: 2
artifact: deps-linux-x86_64
llvm: |
curl -o llvm.tar.xz "$LLVM_URL"
curl -Lo llvm.tar.xz "$LLVM_URL"
hash=$(md5sum llvm.tar.xz | head -c 32)
mkdir llvm
tar -xJ --strip-components=1 -C llvm -f llvm.tar.xz
Expand All @@ -27,7 +27,7 @@ jobs:
parallel: 3
artifact: deps-mac-x86_64
llvm: |
curl -o llvm.tar.xz "$LLVM_URL"
curl -Lo llvm.tar.xz "$LLVM_URL"
hash=$(md5sum llvm.tar.xz | head -c 32)
mkdir llvm
tar -xJ --strip-components=1 -C llvm -f llvm.tar.xz
Expand Down

0 comments on commit 84427a0

Please sign in to comment.