ci/AppVeyor: Remove Git Unix utilities from the PATH

This commit is contained in:
b-r-o-c-k 2018-03-26 10:54:44 -05:00
parent ab6051331c
commit cffdc1da02
1 changed files with 3 additions and 2 deletions

View File

@ -39,8 +39,6 @@ if ($compiler -eq 'MINGW') {
# Add MinGW to the PATH
$env:PATH = "C:\msys64\mingw$bits\bin;$env:PATH"
# Remove the Git sh.exe from the PATH
$env:PATH = $env:PATH.Replace('C:\Program Files\Git\usr\bin', '')
# Build third-party dependencies
C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Su" ; exitIfFailed
@ -56,6 +54,9 @@ elseif ($compiler -eq 'MSVC') {
}
}
# Remove Git Unix utilities from the PATH
$env:PATH = $env:PATH.Replace('C:\Program Files\Git\usr\bin', '')
# Setup python (use AppVeyor system python)
C:\Python27\python.exe -m pip install neovim ; exitIfFailed
C:\Python35\python.exe -m pip install neovim ; exitIfFailed