diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-22 21:52:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-22 21:52:51 +0200 |
commit | 6dae7776ed0d397b444dc5193c7f11ac09e43042 (patch) | |
tree | 66a37a8935f6eee9c9cb24dc42bb3cbe7c6d3ef0 /ci | |
parent | f20427451e7f118d89d231cbab1faf8061369ddc (diff) | |
parent | afd1d412fa912ed39b0dc37a66df6dd0b671ce91 (diff) | |
download | rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.tar.gz rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.tar.bz2 rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.zip |
Merge #9145 'CI, nodejs fixes'
Diffstat (limited to 'ci')
-rw-r--r-- | ci/build.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index bb4d3a9b23..c82a74714c 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -103,7 +103,7 @@ $failed = $false Set-PSDebug -Off cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 | foreach { $failed = $failed -or - $_ -match 'Running functional tests failed with error'; $_ } + $_ -match 'functional tests failed with error'; $_ } Set-PSDebug -Trace 1 if ($failed) { exit $LastExitCode |