| commit | 9cdc0a17ce919dd47c6714101a39478b79e66c0b | [log] [tgz] |
|---|---|---|
| author | Jenkins <jenkins@review.openstack.org> | Fri Aug 02 03:45:27 2013 +0000 |
| committer | Gerrit Code Review <review@openstack.org> | Fri Aug 02 03:45:27 2013 +0000 |
| tree | e84e52ff438d3a4889d74117852ed69d4a2bc61c | |
| parent | da535eec10b526881779c028928a17a606005bc4 [diff] | |
| parent | d2cfcaa5767b12cd1bb7d80f0d0823dd66bbb5c6 [diff] |
Merge "Fix get_pip_command()"
diff --git a/functions b/functions index bb51a55..262f70f 100644 --- a/functions +++ b/functions
@@ -1491,11 +1491,7 @@ # Get the path to the pip command. # get_pip_command function get_pip_command() { - if is_fedora; then - which pip-python - else - which pip - fi + which pip || which pip-python if [ $? -ne 0 ]; then die $LINENO "Unable to find pip; cannot continue"