diff options
-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 |