Merge "cache the pip tarball"

This commit is contained in:
Jenkins 2014-03-29 14:07:35 +00:00 committed by Gerrit Code Review
commit 31f7475baf
1 changed files with 7 additions and 6 deletions

View File

@ -71,12 +71,13 @@ function install_get_pip {
}
function install_pip_tarball {
(cd $FILES; \
curl -O $PIP_TAR_URL; \
tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz 1>/dev/null; \
cd pip-$INSTALL_PIP_VERSION; \
sudo -E python setup.py install 1>/dev/null; \
)
if [[ ! -r $FILES/pip-$INSTALL_PIP_VERSION.tar.gz ]]; then
(cd $FILES; \
curl -O $PIP_TAR_URL; \
tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz 1>/dev/null)
fi
(cd $FILES/pip-$INSTALL_PIP_VERSION; \
sudo -E python setup.py install 1>/dev/null)
}
# Show starting versions