diff --git a/exec.go b/exec.go index 4f37d24de67..544d3de4c9a 100644 --- a/exec.go +++ b/exec.go @@ -178,9 +178,8 @@ func getProcess(context *cli.Context, bundle string) (*specs.Process, error) { p.Capabilities = caps } // append the passed env variables - for _, e := range context.StringSlice("env") { - p.Env = append(p.Env, e) - } + p.Env = append(p.Env, context.StringSlice("env")...) + // set the tty if context.IsSet("tty") { p.Terminal = context.Bool("tty")