diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-05-03 20:38:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 20:38:24 +0800 |
commit | 20aaa59fb3bcd8e47e770db8666e416c23ad9e88 (patch) | |
tree | 8ad3dd7bd1bf43f38087f1d2e657ed073f861960 | |
parent | 8ea84eee570fd1ec560fe149e611d10034d9a223 (diff) | |
download | rneovim-20aaa59fb3bcd8e47e770db8666e416c23ad9e88.tar.gz rneovim-20aaa59fb3bcd8e47e770db8666e416c23ad9e88.tar.bz2 rneovim-20aaa59fb3bcd8e47e770db8666e416c23ad9e88.zip |
ci(MinGW): run pacman -Syu twice (#18384)
-rw-r--r-- | ci/build.ps1 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index c7c3b3d470..533e5804c9 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -73,6 +73,8 @@ if ($compiler -eq 'MINGW') { # Build third-party dependencies C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Syu" ; exitIfFailed + # Update again in case updating pacman changes pacman.conf + C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Syu" ; exitIfFailed C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm --needed -S $mingwPackages" ; exitIfFailed } elseif ($compiler -eq 'MSVC') { |