Skip to content

Commit

Permalink
docker/ubuntu-full/: use wget to fetch PROJ and GDAL
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Oct 15, 2024
1 parent c11bb4a commit ec578b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/ubuntu-full/bh-gdal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu-full/bh-proj.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec578b5

Please sign in to comment.