Added pip-python to the search for CentOS 6 compatibility

This commit is contained in:
Ton Kersten 2012-11-24 13:36:32 +01:00
parent ef379a3760
commit f4d60b95dc

3
pip
View file

@ -136,6 +136,9 @@ def main():
err += err_venv
pip = module.get_bin_path('python-pip', False, ['%s/bin' % env])
if not pip:
pip = module.get_bin_path('pip-python', True, ['%s/bin' % env])
if not pip:
pip = module.get_bin_path('pip', True, ['%s/bin' % env])