diff --git a/cli/cmd/rm.go b/cli/cmd/rm.go index 2ebfeeff5..f53bf6c58 100644 --- a/cli/cmd/rm.go +++ b/cli/cmd/rm.go @@ -38,10 +38,9 @@ type rmOpts struct { func RmCommand() *cobra.Command { var opts rmOpts cmd := &cobra.Command{ - Use: "rm", - Aliases: []string{"delete"}, - Short: "Remove containers", - Args: cobra.MinimumNArgs(1), + Use: "rm", + Short: "Remove containers", + Args: cobra.MinimumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { return runRm(cmd.Context(), args, opts) },