summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authormayeut <mayeut@users.noreply.github.com>2015-10-13 21:37:11 +0200
committermayeut <mayeut@users.noreply.github.com>2015-10-13 21:37:11 +0200
commit6721f8a53fec2ad30d15b142968ab9c8e2e6ba1c (patch)
tree5b09e9657f6eb3c90c0f3a7abe8b67e0986c60b7 /tools
parent54a5860ee283e44776b4e25d9aa4acc55d3b0a93 (diff)
Correct unbound variable
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis-ci/install.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/travis-ci/install.sh b/tools/travis-ci/install.sh
index ca5280ed..61debd95 100755
--- a/tools/travis-ci/install.sh
+++ b/tools/travis-ci/install.sh
@@ -55,9 +55,7 @@ if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
OPJ_DATA_BRANCH=$(git -C ${OPJ_SOURCE_DIR} branch | grep '*' | tr -d '*[[:blank:]]') #default to same branch as we're setting up
fi
OPJ_DATA_HAS_BRANCH=$(git ls-remote --heads git://github.com/uclouvain/openjpeg-data.git ${OPJ_DATA_BRANCH} | wc -l)
- if [ ${OPJ_DATA_HAS_BRANCH} -ne 0 ]; then
- OPJ_DATA_BRANCH=${TRAVIS_BRANCH}
- else
+ if [ ${OPJ_DATA_HAS_BRANCH} -eq 0 ]; then
OPJ_DATA_BRANCH=master #default to master
fi
echo "Cloning openjpeg-data from ${OPJ_DATA_BRANCH} branch"