Skip to content

Commit

Permalink
Fix dup alias "t", keep it for "test" only
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.
  • Loading branch information
muzimuzhi committed Aug 20, 2024
1 parent b43bd37 commit 17838bd
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 17838bd

Please sign in to comment.