[appveyor] add temporary build fix

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2020-05-22 15:20:58 +03:00
parent 46ee427ee3
commit 3f86534132
No known key found for this signature in database
GPG key ID: 66F6C87B98EBCFE2
2 changed files with 20 additions and 20 deletions

View file

@ -0,0 +1,10 @@
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