mirror of
https://github.com/ko-build/ko.git
synced 2024-11-24 08:12:26 +02:00
Silence usage report on internal errors (#397)
This commit is contained in:
parent
c014ec1feb
commit
7b8b24fa32
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()
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user