summaryrefslogtreecommitdiff
path: root/ick2/actionenvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'ick2/actionenvs.py')
-rw-r--r--ick2/actionenvs.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ick2/actionenvs.py b/ick2/actionenvs.py
index 8b12c2f..78d4e5a 100644
--- a/ick2/actionenvs.py
+++ b/ick2/actionenvs.py
@@ -163,7 +163,8 @@ class ContainerEnvironment(ActionEnvironment):
'--bind', bind,
'--chdir', '/workspace',
]
- for key in self._extra_env: # pragma: no cover
- var = '{}={}'.format(key, self._extra_env[key])
+ env = self.get_env_vars()
+ for key in env: # pragma: no cover
+ var = '{}={}'.format(key, env[key])
prefix.extend(['--setenv', var])
return self.host_runcmd(prefix + argv)