summaryrefslogtreecommitdiff
path: root/ick2
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-04-22 21:13:58 +0300
committerLars Wirzenius <liw@liw.fi>2018-04-22 21:13:58 +0300
commit85dd5c6551845ebc34c490f7fbc27a02d307f206 (patch)
tree131dea5a84f154be8685f16e13c33261057f883c /ick2
parent16e05b9e7338031f5b2f2f21ce759867933f7634 (diff)
downloadick2-85dd5c6551845ebc34c490f7fbc27a02d307f206.tar.gz
Change: only pass specified env vars, not all from host
Most of the variables of the worker manager itself won't be useful.
Diffstat (limited to 'ick2')
-rw-r--r--ick2/actionenvs.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/ick2/actionenvs.py b/ick2/actionenvs.py
index 78d4e5a..a21cef2 100644
--- a/ick2/actionenvs.py
+++ b/ick2/actionenvs.py
@@ -131,13 +131,7 @@ class ActionEnvironment: # pragma: no cover
return runner.runcmd(*argvs, cwd=cwd, env=env)
def get_env_vars(self):
- env = dict(os.environ)
- env.update({
- 'LC_ALL': 'C',
- 'DEBIAN_FRONTEND': 'noninteractive',
- })
- env.update(self._extra_env)
- return env
+ return dict(self._extra_env)
class HostEnvironment(ActionEnvironment):