75341292f9
Support for easy_install codepaths is increasingly broken, and now putting allow-hosts in this file breaks most recent pip. Just stop installing the file - people should be using pip anyway. Change-Id: I0a6b2432f81d80fbcbb336403fe555003880fa9f
14 lines
192 B
Bash
Executable File
14 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [ -e ~/.pip/pip.conf.orig ]; then
|
|
mv ~/.pip/pip.conf{.orig,}
|
|
else
|
|
rm ~/.pip/pip.conf
|
|
fi
|