Merge "remove corrupt get-pip.py"

This commit is contained in:
Jenkins 2015-10-08 13:16:45 +00:00 committed by Gerrit Code Review
commit e148587c35
1 changed files with 9 additions and 0 deletions

View File

@ -42,6 +42,15 @@ function get_versions {
function install_get_pip {
# If get-pip.py isn't python, delete it. This was probably an
# outage on the server.
if [[ -r $LOCAL_PIP ]]; then
if ! head -1 $LOCAL_PIP | grep -q '#!/usr/bin/env python'; then
echo "WARNING: Corrupt $LOCAL_PIP found removing"
rm $LOCAL_PIP
fi
fi
# The OpenStack gate and others put a cached version of get-pip.py
# for this to find, explicitly to avoid download issues.
#