Add quotes around ${TRAVIS}.

pull/6/head
brendandburns 2014-06-18 13:59:03 -07:00
parent 3124db63c6
commit e6b8555ba8
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ fi
# Travis continuous build uses a head go release that doesn't report
# a version number, so we skip this check on Travis. Its unnecessary
# there anyway.
if [ ${TRAVIS} != "true" ]; then
if [ "${TRAVIS}" != "true" ]; then
GO_VERSION=($(go version))
if [ ${GO_VERSION[2]} \< "go1.2" ]; then