Merge pull request #18391 from neovim/backport-18384-to-release-0.7

[Backport release-0.7] ci(MinGW): run pacman -Syu twice
This commit is contained in:
zeertzjq
2022-05-03 22:31:00 +08:00
committed by GitHub

View File

@@ -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') {