1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Retrieve pip path after creating virtualenv

Retrieve the pip path after creating a non-existent virtualenv.
Prevents the problem of using the wrong pip if virtualenv doesn't
exist yet.
This commit is contained in:
Lorin Hochstein 2012-08-17 14:38:49 -04:00
parent fe923b9394
commit 8223d3ee3f

View file

@ -101,7 +101,6 @@ def main():
out = ''
env = module.params['virtualenv']
pip = _find_pip(module, env)
if env:
virtualenv = _find_virtualenv(module)
@ -112,6 +111,8 @@ def main():
out += out_venv
err += err_venv
pip = _find_pip(module, env)
state = module.params['state']
name = module.params['name']
version = module.params['version']