mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
284 B
11 lines
284 B
5 years ago
|
set -e -x
|
||
|
|
||
|
base_url='http://repo.msys2.org/msys/x86_64/'
|
||
|
packages="libzstd-1.4.4-2-x86_64.pkg.tar.xz pacman-5.2.1-6-x86_64.pkg.tar.xz zstd-1.4.4-2-x86_64.pkg.tar.xz"
|
||
|
for p in $packages
|
||
|
do
|
||
|
curl "${base_url}$p" -o "$p"
|
||
|
done
|
||
|
pacman -U --noconfirm $packages
|
||
|
rm -f $packages
|