From 35bc0f0b41ea1271111beea997b43239c67ca104 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Wed, 1 Apr 2015 15:10:41 -0700 Subject: [PATCH] Fix inverted feature test in .travis.yml I messed this up in #3540. (cherry picked from commit 9c12e48f68dee39a295e877e391e81ca4af313be) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4a97a9728e..4b5fe3d459 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ cache: before_install: - | if [ "$TEST_TYPE" != build_website ] && \ - git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/' + ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/' then echo "Only docs were updated, stopping build process." exit