From 3dab5f625ff5f3d9cb0b58ff7954003a822b0fdb Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 13 Jun 2019 22:09:29 +0200 Subject: ci/build.ps1: add comment for PATH mangling with old tests --- ci/build.ps1 | 2 ++ 1 file changed, 2 insertions(+) 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 -- cgit