Commit 0ed03b06 authored by Denis Bilenko's avatar Denis Bilenko

greentest/util.py: do not skip global env vars

parent 12e4fb18
......@@ -100,7 +100,7 @@ def kill(popen):
def getname(command, env=None, setenv=None):
result = []
env = (env or {}).copy()
env = (env or os.environ).copy()
env.update(setenv or {})
for key, value in sorted(env.items()):
......
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