summaryrefslogtreecommitdiff
path: root/ick2/actionenvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'ick2/actionenvs.py')
-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):