From 51b9d85bb47495014968922d4adff5319ba44900 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 13 Apr 2018 13:42:02 -0400 Subject: [PATCH] ci/win: redirect stderr to fix mingw build --- ci/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.ps1 b/ci/build.ps1 index d530bbad52..8eb237ccd1 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -100,7 +100,7 @@ bin\nvim --version ; exitIfFailed $failed = $false # Temporarily turn off tracing to reduce log file output Set-PSDebug -Off -cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs | +cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 | foreach { $failed = $failed -or $_ -match 'Running functional tests failed with error'; $_ } Set-PSDebug -Trace 1