aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-22 21:52:51 +0200
committerGitHub <noreply@github.com>2018-10-22 21:52:51 +0200
commit6dae7776ed0d397b444dc5193c7f11ac09e43042 (patch)
tree66a37a8935f6eee9c9cb24dc42bb3cbe7c6d3ef0 /ci
parentf20427451e7f118d89d231cbab1faf8061369ddc (diff)
parentafd1d412fa912ed39b0dc37a66df6dd0b671ce91 (diff)
downloadrneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.tar.gz
rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.tar.bz2
rneovim-6dae7776ed0d397b444dc5193c7f11ac09e43042.zip
Merge #9145 'CI, nodejs fixes'
Diffstat (limited to 'ci')
-rw-r--r--ci/build.ps12
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