Commit a07324c5 by Jack Kuan

Fix the issue of easy_install ignoring virtualenv_site_packages=yes.

parent 467f612e
......@@ -111,7 +111,7 @@ def main():
command = '%s %s' % (virtualenv, env)
if 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
out += out_venv
......
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