mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Merge pull request #3377 from kjkuan/easy_install_fix
Fix the issue of easy_install ignoring virtualenv_site_packages=yes.
This commit is contained in:
commit
d61a65ff08
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ def main():
|
||||||
command = '%s %s' % (virtualenv, env)
|
command = '%s %s' % (virtualenv, env)
|
||||||
if site_packages:
|
if site_packages:
|
||||||
command += ' --system-site-packages'
|
command += ' --system-site-packages'
|
||||||
rc_venv, out_venv, err_venv = module.run_command('%s %s' % (virtualenv, env))
|
rc_venv, out_venv, err_venv = module.run_command(command)
|
||||||
|
|
||||||
rc += rc_venv
|
rc += rc_venv
|
||||||
out += out_venv
|
out += out_venv
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue