Skip to content

Commit 6ce57ea

Browse files
ulyssessouzandeloof
authored andcommitted
Remove DEPRECATED text, since it's just the default
Signed-off-by: Ulysses Souza <[email protected]>
1 parent 2cf917a commit 6ce57ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/compose/exec.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ func execCommand(p *projectOptions, backend api.Service) *cobra.Command {
7070
runCmd.Flags().BoolVarP(&opts.noTty, "no-TTY", "T", false, "Disable pseudo-TTY allocation. By default `docker compose exec` allocates a TTY.")
7171
runCmd.Flags().StringVarP(&opts.workingDir, "workdir", "w", "", "Path to workdir directory for this command.")
7272

73-
runCmd.Flags().BoolP("interactive", "i", true, "Keep STDIN open even if not attached. DEPRECATED")
73+
runCmd.Flags().BoolP("interactive", "i", true, "Keep STDIN open even if not attached.")
7474
runCmd.Flags().MarkHidden("interactive") //nolint:errcheck
75-
runCmd.Flags().BoolP("tty", "t", true, "Allocate a pseudo-TTY. DEPRECATED")
75+
runCmd.Flags().BoolP("tty", "t", true, "Allocate a pseudo-TTY.")
7676
runCmd.Flags().MarkHidden("tty") //nolint:errcheck
7777

7878
runCmd.Flags().SetInterspersed(false)

0 commit comments

Comments
 (0)