diff options
author | Daniel Hahler <git@thequod.de> | 2019-08-14 22:04:21 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-08-14 23:17:42 +0200 |
commit | 7c0ae066649424d69c4d00918b6dd6aa0314106b (patch) | |
tree | 8a6031169c8c606a2d18d547e4332ef0242d6a76 | |
parent | ab842fb8b85af83524fe5ab6c4e1f41722dd009e (diff) | |
download | rneovim-7c0ae066649424d69c4d00918b6dd6aa0314106b.tar.gz rneovim-7c0ae066649424d69c4d00918b6dd6aa0314106b.tar.bz2 rneovim-7c0ae066649424d69c4d00918b6dd6aa0314106b.zip |
ci: Travis: build.sh: use cat "-vet" for osx
Fixes:
cat: illegal option -- A
usage: cat [-benstuv] [file ...]
Broken in 5cc45bb41.
squash! ci: Travis: build.sh: use cat "-vET" for osx [skip appveyor]
cat -vet
-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 |