Merge pull request #900 from lorin/pip-venv-bug
Retrieve pip path after creating virtualenv
This commit is contained in:
commit
b9880e38b8
1 changed files with 2 additions and 1 deletions
3
pip
3
pip
|
@ -101,7 +101,6 @@ def main():
|
||||||
out = ''
|
out = ''
|
||||||
|
|
||||||
env = module.params['virtualenv']
|
env = module.params['virtualenv']
|
||||||
pip = _find_pip(module, env)
|
|
||||||
|
|
||||||
if env:
|
if env:
|
||||||
virtualenv = _find_virtualenv(module)
|
virtualenv = _find_virtualenv(module)
|
||||||
|
@ -112,6 +111,8 @@ def main():
|
||||||
out += out_venv
|
out += out_venv
|
||||||
err += err_venv
|
err += err_venv
|
||||||
|
|
||||||
|
pip = _find_pip(module, env)
|
||||||
|
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
name = module.params['name']
|
name = module.params['name']
|
||||||
version = module.params['version']
|
version = module.params['version']
|
||||||
|
|
Loading…
Reference in a new issue