From 7b85c3d398a015206015764f097f87f51cdc8df9 Mon Sep 17 00:00:00 2001 From: Romeo-Golf Date: Sun, 8 Jan 2017 03:40:25 +0000 Subject: [PATCH] Fix typo in travis buildfile --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 508e017..931ac67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,4 @@ language: bash sudo: required before_install: sudo apt-get -qq update install: true -script: RANCH_NUMBER=`echo -n "${TRAVIS_BRANCH}" | sed -e 's/\.//g'` && if [ ${BRANCH_NUMBER} -ge "260" ] ; then ./install.sh -a -b ${TRAVIS_BRANCH} ; else echo "Automated build testing only supported in version 2.6.0 or above, but returning true for consistency" && true ; fi +script: BRANCH_NUMBER=`echo -n "${TRAVIS_BRANCH}" | sed -e 's/\.//g'` && if [[ "${BRANCH_NUMBER}" -ge "260" ]] ; then ./install.sh -a -b ${TRAVIS_BRANCH} ; else echo "Automated build testing only supported in version 2.6.0 or above, but returning true for consistency" && true ; fi