Chdir to tempdir to prevent permissions problems.
This commit is contained in:
parent
3926f76644
commit
cc1f1368e4
1 changed files with 1 additions and 0 deletions
|
@ -201,6 +201,7 @@ def main():
|
|||
cmd = '%s --system-site-packages %s' % (virtualenv, env)
|
||||
else:
|
||||
cmd = '%s %s' % (virtualenv, env)
|
||||
os.chdir(tempfile.gettempdir())
|
||||
rc, out_venv, err_venv = module.run_command(cmd)
|
||||
out += out_venv
|
||||
err += err_venv
|
||||
|
|
Loading…
Reference in a new issue