diff --git a/scripts/install_deps_msys.sh b/scripts/install_deps_msys.sh index f4b38bfe66..bc928c178d 100644 --- a/scripts/install_deps_msys.sh +++ b/scripts/install_deps_msys.sh @@ -7,13 +7,12 @@ if [[ "${MSYSTEM}" != "MINGW64" ]] ; then exit 1 fi -pacman -Su --noconfirm --needed \ +pacman -S --noconfirm --needed \ git make tar dos2unix zip unzip patch \ mingw-w64-x86_64-toolchain \ mingw-w64-x86_64-make \ mingw-w64-x86_64-ccache \ mingw-w64-x86_64-cmake \ - mingw-w64-x86_64-go \ mingw-w64-x86_64-boost \ mingw-w64-x86_64-intel-tbb \ mingw-w64-x86_64-openblas \ @@ -21,8 +20,12 @@ pacman -Su --noconfirm --needed \ mingw-w64-x86_64-clang-tools-extra \ mingw-w64-x86_64-python2 \ mingw-w64-x86_64-diffutils \ - mingw-w64-x86_64-arrow \ - mingw-w64-x86_64-rocksdb + mingw-w64-x86_64-arrow + +# workaround for install older packages +pacman -U --noconfirm \ + https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-go-1.17-1-any.pkg.tar.zst \ + https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-rocksdb-6.26.1-1-any.pkg.tar.zst # dummy empty dl, TODO: remove later