summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2022-05-07 10:55:00 +0200
committerEven Rouault <even.rouault@spatialys.com>2022-05-07 10:55:00 +0200
commitaf4fd8d317c161b2b08380c3fb08fbe357715eb5 (patch)
treecb36b3fed80b40593e67669d29e2302045fc9a2b /tools
parent7b474e6d815900eeebcaf03e44d8d076e3ee900a (diff)
tools/travis-ci/install.sh: git clone with https:// to fix 'The unauthenticated git protocol on port 9418 is no longer supported.'
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis-ci/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/travis-ci/install.sh b/tools/travis-ci/install.sh
index 997f7bb8..26568af4 100755
--- a/tools/travis-ci/install.sh
+++ b/tools/travis-ci/install.sh
@@ -56,12 +56,12 @@ if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
else
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)
+ OPJ_DATA_HAS_BRANCH=$(git ls-remote --heads https://github.com/uclouvain/openjpeg-data ${OPJ_DATA_BRANCH} | wc -l)
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"
- git clone -v --depth=1 --branch=${OPJ_DATA_BRANCH} git://github.com/uclouvain/openjpeg-data.git data
+ git clone -v --depth=1 --branch=${OPJ_DATA_BRANCH} https://github.com/uclouvain/openjpeg-data data
# We need jpylyzer for the test suite
JPYLYZER_VERSION="1.17.0"