diff options
author | b-r-o-c-k <brockmammen@gmail.com> | 2018-03-26 10:54:44 -0500 |
---|---|---|
committer | b-r-o-c-k <brockmammen@gmail.com> | 2018-03-26 10:54:44 -0500 |
commit | cffdc1da0265cd6ef07e01b36feeb3120fd772e0 (patch) | |
tree | f7d6dba9e1c56413980e133f38ea22c9d9387b58 | |
parent | ab6051331cebcde712ccc547b550d2a5d42cd587 (diff) | |
download | rneovim-cffdc1da0265cd6ef07e01b36feeb3120fd772e0.tar.gz rneovim-cffdc1da0265cd6ef07e01b36feeb3120fd772e0.tar.bz2 rneovim-cffdc1da0265cd6ef07e01b36feeb3120fd772e0.zip |
ci/AppVeyor: Remove Git Unix utilities from the PATH
-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 |