diff options
-rw-r--r-- | ci/build.ps1 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 9fb59b438d..14eb29845c 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -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 |