From 8c63b5fe52161560938d771fca0d22237689f873 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Mon, 30 Jun 2014 21:04:49 -0400 Subject: [PATCH] fix logic error in .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a57d3d802de8..54531f2a12b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,7 +28,7 @@ install: - if [ "$CHECK_UTF8" = true ]; then time sudo apt-get install -qq moreutils; fi script: - if [ "$CHECK_UTF8" = true ]; then time ./utils/travis/check_utf8.sh; fi - - time grep -qorHbm1 "^`echo -ne '\xef\xbb\xbf'`" po/ src/ data/ || exit 1 + - time grep -qorHbm1 "^`echo -ne '\xef\xbb\xbf'`" po/ src/ data/ && exit 1 # UTF8 checks are the previous two lines. the second one checks po src data for UTF8 bom, this takes less than a second. - scons cxxtool=$CXX --debug=time strict=$STRICT_COMPILATION $TARGETS - "export DISPLAY=:99.0"