pkg(pure-0.68):Add -O flag on curl, so it just outputs to stdout

This commit is contained in:
Shivansh-007 2021-03-20 06:15:51 +05:30
parent a643f15062
commit 7b82da372e

View file

@ -3,8 +3,8 @@
PREFIX=$(realpath $(dirname $0))
# Installing LLVM and clang (the latter is optional but recommended)
curl "http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz"
curl "http://llvm.org/releases/3.4/clang-3.4.src.tar.gz"
curl -O "http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz"
curl -O "http://llvm.org/releases/3.4/clang-3.4.src.tar.gz"
tar xfvz llvm-3.4.src.tar.gz
tar xfvz clang-3.4.src.tar.gz
@ -19,7 +19,7 @@ make -j$(nproc)
make install -j$(nproc)
# Installing Pure
curl -sSL "https://github.com/agraef/pure-lang/releases/download/pure-0.68/pure-0.68.tar.gz"
curl -sSLO "https://github.com/agraef/pure-lang/releases/download/pure-0.68/pure-0.68.tar.gz"
tar xfvz pure-0.68.tar.gz
rm pure-0.68.tar.gz
cd pure-0.68