Simplify loop to a simple array append
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
parent
84a3bd250c
commit
87d08d1ac2
5
exec.go
5
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")
|
||||
|
|
Loading…
Reference in New Issue