11 lines
297 B
Bash
11 lines
297 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
set -e
|
|
|
|
pacman -Su --needed --noconfirm
|
|
pacman -S --needed --noconfirm wget p7zip python3-pip
|
|
pip install s3cmd
|
|
wget -nv "https://ziglang.org/deps/llvm%2bclang%2blld-10.0.0-x86_64-windows-msvc-release-mt.tar.xz"
|
|
tar xf llvm+clang+lld-10.0.0-x86_64-windows-msvc-release-mt.tar.xz
|