Skip to content

Commit 84ab186

Browse files
committed
scripts: Use curl instead of wget for downloads for newer SSL support
1 parent f87e16e commit 84ab186

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This module should be pulled and run from an ITKModule root directory to generate the Linux python wheels of this module,
44
# it is used by the circle.yml file contained in ITKModuleTemplate: https://github.com/InsightSoftwareConsortium/ITKModuleTemplate
55

6-
wget -L https://data.kitware.com/api/v1/file/592dd8068d777f16d01e1a92/download -O zstd-1.2.0-linux.tar.gz
6+
curl https://data.kitware.com/api/v1/file/592dd8068d777f16d01e1a92/download -o zstd-1.2.0-linux.tar.gz
77
gunzip -d zstd-1.2.0-linux.tar.gz
88
tar xf zstd-1.2.0-linux.tar
99

@@ -12,7 +12,7 @@ curl -L https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/do
1212
tar xf ITKPythonBuilds-linux.tar
1313

1414
mkdir tools
15-
wget -L https://data.kitware.com/api/v1/file/5c0aa4b18d777f2179dd0a71/download -O doxygen-1.8.11.linux.bin.tar.gz
15+
curl https://data.kitware.com/api/v1/file/5c0aa4b18d777f2179dd0a71/download -o doxygen-1.8.11.linux.bin.tar.gz
1616
tar -xvzf doxygen-1.8.11.linux.bin.tar.gz -C tools
1717

1818
./ITKPythonPackage/scripts/dockcross-manylinux-build-module-wheels.sh

scripts/internal/manylinux-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ source "${script_dir}/manylinux-build-common.sh"
1212
# Install prerequirements
1313
mkdir -p /work/tools
1414
pushd /work/tools > /dev/null 2>&1
15-
wget -L https://data.kitware.com/api/v1/file/5c0aa4b18d777f2179dd0a71/download -O doxygen-1.8.11.linux.bin.tar.gz
15+
curl https://data.kitware.com/api/v1/file/5c0aa4b18d777f2179dd0a71/download -o doxygen-1.8.11.linux.bin.tar.gz
1616
tar -xvzf doxygen-1.8.11.linux.bin.tar.gz
1717
popd > /dev/null 2>&1
1818
# -----------------------------------------------------------------------

0 commit comments

Comments
 (0)