Commit 036f853d by Michael DeHaan

Merge pull request #1330 from wzzrd/pip

Test for python-pip as well as pip
parents 05ae500d 2f6b9e69
......@@ -135,7 +135,9 @@ def main():
out += out_venv
err += err_venv
pip = module.get_bin_path('pip', True, ['%s/bin' % env])
pip = module.get_bin_path('python-pip', False, ['%s/bin' % env])
if not pip:
pip = module.get_bin_path('pip', True, ['%s/bin' % env])
state = module.params['state']
name = module.params['name']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment