mirror of
https://github.com/ko-build/ko.git
synced 2025-11-06 09:19:12 +02:00
Silence usage report on internal errors (#397)
This commit is contained in:
5
main.go
5
main.go
@@ -33,8 +33,9 @@ func main() {
|
||||
|
||||
// Parent command to which all subcommands are added.
|
||||
cmds := &cobra.Command{
|
||||
Use: "ko",
|
||||
Short: "Rapidly iterate with Go, Containers, and Kubernetes.",
|
||||
Use: "ko",
|
||||
Short: "Rapidly iterate with Go, Containers, and Kubernetes.",
|
||||
SilenceUsage: true, // Don't show usage on errors
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
cmd.Help()
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user