docker/ubuntu-full/: use wget to fetch PROJ and GDAL

This commit is contained in:
Even Rouault 2024-10-15 13:24:24 +02:00
parent 57d1d78f1c
commit 5eb0bfe08a
No known key found for this signature in database
GPG Key ID: 33EBBFC47B3DD87D
2 changed files with 4 additions and 4 deletions

View File

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

View File

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