Skip to content

Commit

Permalink
tools/jenkins: fix pip bootstrap url
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Feb 2, 2021
1 parent 7faf9ae commit 6ede28e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/jenkins/build-Linux-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ export PYDIR="$PYDIR"

# Install pip
if [ -x "${TMP_PORTABLE_DIR}"/bin/natron-python ]; then
$CURL --remote-name --insecure http://bootstrap.pypa.io/get-pip.py
$CURL --remote-name --insecure https://bootstrap.pypa.io/2.7/get-pip.py
"${TMP_PORTABLE_DIR}"/bin/natron-python get-pip.py
rm get-pip.py
fi
Expand Down
2 changes: 1 addition & 1 deletion tools/jenkins/build-OSX-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ export PYDIR="$pkglib/Python.framework/Versions/${PYVER}/lib/python${PYVER}"

# Install pip
if [ -x "${TMP_PORTABLE_DIR}.app/Contents/MacOS"/natron-python ]; then
$CURL --remote-name --insecure http://bootstrap.pypa.io/get-pip.py
$CURL --remote-name --insecure https://bootstrap.pypa.io/2.7/get-pip.py
"${TMP_PORTABLE_DIR}.app/Contents/MacOS"/natron-python get-pip.py
rm get-pip.py
fi
Expand Down
2 changes: 1 addition & 1 deletion tools/jenkins/build-Windows-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ export PYDIR="$PYDIR"

# Install pip
if [ -x "${TMP_PORTABLE_DIR}"/bin/natron-python ]; then
$CURL --remote-name --insecure http://bootstrap.pypa.io/get-pip.py
$CURL --remote-name --insecure https://bootstrap.pypa.io/2.7/get-pip.py
"${TMP_PORTABLE_DIR}"/bin/natron-python get-pip.py
rm get-pip.py
fi
Expand Down

0 comments on commit 6ede28e

Please sign in to comment.