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:
sbauza 2013-12-05 14:56:14 +01:00
parent 63c19987df
commit a49422e33e
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ function install_get_pip() {
curl -O $PIP_GET_PIP_URL; \
)
fi
sudo python $FILES/get-pip.py
sudo -E python $FILES/get-pip.py
}
function install_pip_tarball() {
@ -75,7 +75,7 @@ function install_pip_tarball() {
curl -O $PIP_TAR_URL; \
tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz 1>/dev/null; \
cd pip-$INSTALL_PIP_VERSION; \
sudo python setup.py install 1>/dev/null; \
sudo -E python setup.py install 1>/dev/null; \
)
}