Fix typo in travis buildfile

pull/289/head
Romeo-Golf 2017-01-08 03:40:25 +00:00
rodzic ea4fccf86a
commit 7b85c3d398
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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