docker/ubuntu-full/: use wget to fetch PROJ and GDAL
This commit is contained in:
parent
57d1d78f1c
commit
5eb0bfe08a
|
@ -13,8 +13,8 @@ if [ -z "${GDAL_BUILD_IS_RELEASE:-}" ]; then
|
|||
fi
|
||||
|
||||
mkdir gdal
|
||||
curl -L -fsS "https://github.com/${GDAL_REPOSITORY}/archive/${GDAL_VERSION}.tar.gz" \
|
||||
| tar xz -C gdal --strip-components=1
|
||||
wget -q "https://github.com/${GDAL_REPOSITORY}/archive/${GDAL_VERSION}.tar.gz" \
|
||||
-O - | tar xz -C gdal --strip-components=1
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@ fi
|
|||
set -eu
|
||||
|
||||
mkdir proj
|
||||
curl -L -fsS "https://github.com/OSGeo/PROJ/archive/${PROJ_VERSION}.tar.gz" \
|
||||
| tar xz -C proj --strip-components=1
|
||||
wget -q "https://github.com/OSGeo/PROJ/archive/${PROJ_VERSION}.tar.gz" \
|
||||
-O - | tar xz -C proj --strip-components=1
|
||||
|
||||
(
|
||||
cd proj
|
||||
|
|
Loading…
Reference in New Issue