Skip to content

Commit 8951e55

Browse files
Fix dup alias "t", keep it for "test" only (#1159)
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]>
1 parent f47c9b4 commit 8951e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/troubleshoot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var fullAPIKey bool
2121
// troubleshootCmd does a diagnostic self-check.
2222
var troubleshootCmd = &cobra.Command{
2323
Use: "troubleshoot",
24-
Aliases: []string{"t", "debug"},
24+
Aliases: []string{"debug"},
2525
Short: "Troubleshoot does a diagnostic self-check.",
2626
Long: `Provides output to help with troubleshooting.
2727

0 commit comments

Comments
 (0)