"vscode:/vscode.git/clone" did not exist on "4eb855680308fd279357896dfe0afe59e5c307fa"
Unverified Commit 2eefef9f authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #161 from radarhere/url

Updated redirected URL
parents ae3e5598 ee917362
...@@ -206,7 +206,7 @@ function install_pip { ...@@ -206,7 +206,7 @@ function install_pip {
# Python 2.6 will fail SSL check # Python 2.6 will fail SSL check
local py_mm=`get_py_mm` local py_mm=`get_py_mm`
if [ "$py_mm" == "2.6" ]; then if [ "$py_mm" == "2.6" ]; then
local pip_args="--trusted-host=pypi.python.org" local pip_args="--trusted-host=pypi.org"
fi fi
# Travis VMS now install pip for system python by default - force install # Travis VMS now install pip for system python by default - force install
# even if installed already. # even if installed already.
......
...@@ -32,7 +32,7 @@ if ! [[ "$implementer_version" =~ $requested_version ]]; then ...@@ -32,7 +32,7 @@ if ! [[ "$implementer_version" =~ $requested_version ]]; then
ingest "Wrong python version: ${implementer_version}!=${requested_version}" ingest "Wrong python version: ${implementer_version}!=${requested_version}"
fi fi
if [ "$python_mm" == "2.6" ]; then if [ "$python_mm" == "2.6" ]; then
expected_pip_args=" --trusted-host=pypi.python.org" expected_pip_args=" --trusted-host=pypi.org"
fi fi
if [ -n "$VENV" ]; then # in virtualenv if [ -n "$VENV" ]; then # in virtualenv
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment