Skip to content

Commit b69f8c9

Browse files
jhlegarretahjmjohnson
authored andcommitted
COMP: Do not use rawgit.com.
Do not use `rawgit.com` as part of the curl command argument when generating the Python package. It is no longer supported. Use `raw.githubusercontent` instead.
1 parent d3cbc88 commit b69f8c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- run:
4545
name: Fetch build script
4646
command: |
47-
curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh -O
47+
curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh -O
4848
chmod u+x dockcross-manylinux-download-cache-and-build-module-wheels.sh
4949
- run:
5050
name: Build Python packages

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cache:
88
directories:
99
- "$HOME/Library/Caches/Homebrew"
1010
script:
11-
- curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
11+
- curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
1212
- chmod u+x macpython-download-cache-and-build-module-wheels.sh
1313
- ./macpython-download-cache-and-build-module-wheels.sh
1414
- tar -zcvf dist.tar.gz dist/

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: "0.0.1.{build}"
66

77
install:
88

9-
- curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/windows-download-cache-and-build-module-wheels.ps1 -O
9+
- curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/windows-download-cache-and-build-module-wheels.ps1 -O
1010
- ps: .\windows-download-cache-and-build-module-wheels.ps1
1111

1212
build: off

0 commit comments

Comments
 (0)