aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-04-13 13:42:02 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-04-13 13:42:12 -0400
commit51b9d85bb47495014968922d4adff5319ba44900 (patch)
treed3149ef15bde053de292d6ab148d6addfb17a60a
parentad30907814dafdfe8533fe49c62ee8eb3472e438 (diff)
downloadrneovim-51b9d85bb47495014968922d4adff5319ba44900.tar.gz
rneovim-51b9d85bb47495014968922d4adff5319ba44900.tar.bz2
rneovim-51b9d85bb47495014968922d4adff5319ba44900.zip
ci/win: redirect stderr to fix mingw build
-rw-r--r--ci/build.ps12
1 files changed, 1 insertions, 1 deletions
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