diff options
author | Daniel Hahler <git@thequod.de> | 2019-08-21 21:54:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 21:54:03 +0200 |
commit | fc12ada4f1f3ca8a1fabae5184d2bdabc33b55a3 (patch) | |
tree | 51f584df381bef24601ca1798b68c9b0874cfe8b | |
parent | 450a68b7cc9f1bb65bbb9a38d49b49cfd7c0e5b0 (diff) | |
download | rneovim-fc12ada4f1f3ca8a1fabae5184d2bdabc33b55a3.tar.gz rneovim-fc12ada4f1f3ca8a1fabae5184d2bdabc33b55a3.tar.bz2 rneovim-fc12ada4f1f3ca8a1fabae5184d2bdabc33b55a3.zip |
ci: AppVeyor: exitIfFailed with old tests (#10187)
-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 42066c462b..d533d7b4e0 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -139,7 +139,7 @@ if ($uploadToCodecov) { # But would break functionaltests, where its `more` would be used then. $OldPath = $env:PATH $env:PATH = "C:\msys64\usr\bin;$env:PATH" -& "C:\msys64\mingw$bits\bin\mingw32-make.exe" -C $(Convert-Path ..\src\nvim\testdir) VERBOSE=1 +& "C:\msys64\mingw$bits\bin\mingw32-make.exe" -C $(Convert-Path ..\src\nvim\testdir) VERBOSE=1 ; exitIfFailed $env:PATH = $OldPath if ($uploadToCodecov) { |