Fix install_get_pip in order to work behind a proxy
Proxy envvars are not passed to pip when sudo, we need to export them. Change-Id: I67622f5ea8ecb948006e032bdc395ecf36914146 Closes-Bug: #1258155
This commit is contained in:
parent
63c19987df
commit
a49422e33e
@ -67,7 +67,7 @@ function install_get_pip() {
|
|||||||
curl -O $PIP_GET_PIP_URL; \
|
curl -O $PIP_GET_PIP_URL; \
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
sudo python $FILES/get-pip.py
|
sudo -E python $FILES/get-pip.py
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_pip_tarball() {
|
function install_pip_tarball() {
|
||||||
@ -75,7 +75,7 @@ function install_pip_tarball() {
|
|||||||
curl -O $PIP_TAR_URL; \
|
curl -O $PIP_TAR_URL; \
|
||||||
tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz 1>/dev/null; \
|
tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz 1>/dev/null; \
|
||||||
cd pip-$INSTALL_PIP_VERSION; \
|
cd pip-$INSTALL_PIP_VERSION; \
|
||||||
sudo python setup.py install 1>/dev/null; \
|
sudo -E python setup.py install 1>/dev/null; \
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user