diff options
| author | Daniel Hahler <git@thequod.de> | 2019-08-14 23:21:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-14 23:21:41 +0200 |
| commit | 9bf3fab60b7816274ff3b7131a793b5b4f2f5f3c (patch) | |
| tree | 384d9e9938b27b2e3e1ffc6f332eb93af02f7490 /ci | |
| parent | 48b43352b052392418888c5a10c7802e7388a24a (diff) | |
| parent | ae31de32ee49951e4d107043f88dbfed07473c47 (diff) | |
| download | rneovim-9bf3fab60b7816274ff3b7131a793b5b4f2f5f3c.tar.gz rneovim-9bf3fab60b7816274ff3b7131a793b5b4f2f5f3c.tar.bz2 rneovim-9bf3fab60b7816274ff3b7131a793b5b4f2f5f3c.zip | |
Merge pull request #10779 from blueyed/ci-homebrew-no-update
ci: fix Travis
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/common/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/build.sh b/ci/common/build.sh index 654dd8aa66..8e9b2f8ebb 100644 --- a/ci/common/build.sh +++ b/ci/common/build.sh @@ -84,7 +84,7 @@ build_nvim() { fi # Invoke nvim to trigger *San early. - if ! (bin/nvim --version && bin/nvim -u NONE -e -cq | cat -A) ; then + if ! (bin/nvim --version && bin/nvim -u NONE -e -cq | cat -vet) ; then check_sanitizer "${LOG_DIR}" exit 1 fi |