diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-13 22:09:29 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-06-17 02:00:58 +0200 |
commit | 3dab5f625ff5f3d9cb0b58ff7954003a822b0fdb (patch) | |
tree | 61289cb79b3f3078492124246940b7d68b808673 | |
parent | b98b1168d81a0fd61c073780f0555ab858abdf78 (diff) | |
download | rneovim-3dab5f625ff5f3d9cb0b58ff7954003a822b0fdb.tar.gz rneovim-3dab5f625ff5f3d9cb0b58ff7954003a822b0fdb.tar.bz2 rneovim-3dab5f625ff5f3d9cb0b58ff7954003a822b0fdb.zip |
ci/build.ps1: add comment for PATH mangling with old tests
-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 151563709c..d3686e2914 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -129,6 +129,8 @@ if ($uploadToCodecov) { } # Old tests +# Add MSYS to path, required for e.g. `find` used in test scripts. +# But would break functionaltests, where its `more` would be used then. $env:PATH = "C:\msys64\usr\bin;$env:PATH" & "C:\msys64\mingw$bits\bin\mingw32-make.exe" -C $(Convert-Path ..\src\nvim\testdir) VERBOSE=1 |