commit | 5d8ae5bb6b6cde7f14e0b5ff554a177fc53b9271 | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Fri Jan 04 22:26:01 2013 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Fri Jan 04 22:26:01 2013 +0000 |
tree | e4f44181465ac403b1457cb323455d2431e40b87 | |
parent | 822d9b6c992c21617243496760a746cf53672430 [diff] | |
parent | 35138ed6732fd2d4d06b9ffa92a391626acddfb1 [diff] |
Merge "Use 'which pip' rather than /usr/bin/pip"
diff --git a/functions b/functions index 9565e10..294c380 100644 --- a/functions +++ b/functions
@@ -1125,9 +1125,9 @@ # 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 }