mirror of
https://github.com/Hopiu/portainer-cli.git
synced 2026-03-16 22:10:34 +00:00
Fix environement variable extraction
This commit is contained in:
parent
54c4cede32
commit
bec593bf40
1 changed files with 4 additions and 4 deletions
|
|
@ -264,10 +264,10 @@ class PortainerCLI(object):
|
|||
lambda x: re.match(env_arg_regex, x),
|
||||
args,
|
||||
)
|
||||
env = dict(map(
|
||||
lambda x: env_arg_to_dict(x),
|
||||
env_args,
|
||||
))
|
||||
env = dict(map(
|
||||
lambda x: env_arg_to_dict(x),
|
||||
env_args,
|
||||
))
|
||||
return env
|
||||
|
||||
@plac.annotations(
|
||||
|
|
|
|||
Loading…
Reference in a new issue