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
This commit is contained in:
Daniel Hahler 2019-08-14 22:04:21 +02:00
parent ab842fb8b8
commit 7c0ae06664
1 changed files with 1 additions and 1 deletions

View File

@ -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