aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-02-16 14:11:25 +0100
committerMarc André Tanner <mat@brain-dump.org>2017-02-16 14:11:25 +0100
commit16d2d97cd2f398d8da0eff441856d761f67e153c (patch)
treef2ad70947bfb6310c4c8031a0acce65d6f776b54
parent4caea3a634e700c5b7a2bed1fcad5b8253cb0024 (diff)
downloadvis-16d2d97cd2f398d8da0eff441856d761f67e153c.tar.gz
vis-16d2d97cd2f398d8da0eff441856d761f67e153c.tar.xz
travis: fix yaml syntax
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index ab7ee0b..fec1d12 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -74,10 +74,10 @@ script:
fi
fi
- make -C test/core coverage
- - [ ! -e vis ] || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/lua
- - [ ! -e vis ] || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/vis
- - [ ! -e vis ] || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/sam
- - [ ! -e vis ] || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/vim
+ - test ! -e vis || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/lua
+ - test ! -e vis || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/vis
+ - test ! -e vis || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/sam
+ - test ! -e vis || LD_LIBRARY_PATH="$(pwd)/dependency/install/usr/lib" make -C test/vim
after_success:
- bash <(curl -s https://codecov.io/bash)