From: Joel Rosdahl Date: Sat, 19 Dec 2015 14:57:47 +0000 (+0100) Subject: Avoid bashism in .travis.yml X-Git-Tag: v3.3~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0db899220bd9aa80c36602988306da5688f0637;p=thirdparty%2Fccache.git Avoid bashism in .travis.yml --- diff --git a/.travis.yml b/.travis.yml index 86c40097a..84825641f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,7 @@ script: - ./autogen.sh - ./configure - make - - if [ "$CC" == "gcc" ]; then + - if [ "$CC" = "gcc" ]; then ./test.sh; fi