Commit deef22ce authored by Jason R. Coombs's avatar Jason R. Coombs

Use update to set the home environment variable.

parent 0822c8ff
......@@ -46,8 +46,9 @@ class TestEggInfo:
egg-base = %(egg-base)s
""" % paths
))
environ = os.environ.copy()
environ['HOME'] = paths['home']
environ = os.environ.copy().update(
HOME=paths['home'],
)
cmd = [
'install',
'--home', paths['home'],
......
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