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

Expand any user home variable in pip module's virtualenv parameter

This commit is contained in:
David Hughes 2013-03-13 20:58:04 -07:00
parent d0332a6c6d
commit 08100bd798

View file

@ -188,6 +188,7 @@ def main():
virtualenv_command = module.params['virtualenv_command']
if env:
env = os.path.expanduser(env)
virtualenv = module.get_bin_path(virtualenv_command, True)
if not os.path.exists(os.path.join(env, 'bin', 'activate')):
if module.check_mode: