瀏覽代碼

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

Guillaume Tardif 5 年之前
父節點
當前提交
d71ae04936
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      cli/cmd/exec.go

+ 1 - 0
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
 }