Silence usage report on internal errors (#397)

This commit is contained in:
Evan Anderson
2021-07-26 15:48:07 -07:00
committed by GitHub
parent c014ec1feb
commit 7b8b24fa32
+3 -2
View File
@@ -33,8 +33,9 @@ func main() {
// Parent command to which all subcommands are added. // Parent command to which all subcommands are added.
cmds := &cobra.Command{ cmds := &cobra.Command{
Use: "ko", Use: "ko",
Short: "Rapidly iterate with Go, Containers, and Kubernetes.", Short: "Rapidly iterate with Go, Containers, and Kubernetes.",
SilenceUsage: true, // Don't show usage on errors
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
cmd.Help() cmd.Help()
}, },