From d71ae049365e2d0daa38eb2ce50fa396ce14cbb0 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Mon, 29 Jun 2020 10:50:04 +0200 Subject: [PATCH] Let -it flag go through for aci exec, same as -t for the moment. Will need to check how we can implement -I specifically on ACI --- cli/cmd/exec.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/cmd/exec.go b/cli/cmd/exec.go index 99448cadf..7120b1c75 100644 --- a/cli/cmd/exec.go +++ b/cli/cmd/exec.go @@ -45,6 +45,7 @@ func ExecCommand() *cobra.Command { } cmd.Flags().BoolVarP(&opts.Tty, "tty", "t", false, "Allocate a pseudo-TTY") + cmd.Flags().BoolP("interactive", "i", false, "Keep STDIN open even if not attached") return cmd }