Merge "Use 'which pip' rather than /usr/bin/pip"

This commit is contained in:
Jenkins 2013-01-04 22:26:01 +00:00 committed by Gerrit Code Review
commit 5d8ae5bb6b

View File

@ -1125,9 +1125,9 @@ function get_rootwrap_location() {
# get_pip_command
function get_pip_command() {
if is_fedora; then
echo "/usr/bin/pip-python"
which pip-python
else
echo "/usr/bin/pip"
which pip
fi
}