소스 검색

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
 }