Skip to content

Commit

Permalink
Fix dup alias "t", keep it for "test" only (#1159)
Browse files Browse the repository at this point in the history
Command alias "t" was registered by both "troubleshoot" and "test"
commands. This PR drops it from "troubleshoot" aliases.

Co-authored-by: Erik Schierboom <[email protected]>
  • Loading branch information
muzimuzhi and ErikSchierboom authored Aug 21, 2024
1 parent f47c9b4 commit 8951e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/troubleshoot.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var fullAPIKey bool
// troubleshootCmd does a diagnostic self-check.
var troubleshootCmd = &cobra.Command{
Use: "troubleshoot",
Aliases: []string{"t", "debug"},
Aliases: []string{"debug"},
Short: "Troubleshoot does a diagnostic self-check.",
Long: `Provides output to help with troubleshooting.
Expand Down

0 comments on commit 8951e55

Please sign in to comment.