fix root.go.golden (#1552)

This commit is contained in:
Unai Martinez-Corral 2021-12-07 23:24:06 +00:00 committed by GitHub
parent 1854bb5c96
commit 36bff0a4d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,10 @@ to quickly create a Cobra application.`,
// Execute adds all child commands to the root command and sets flags appropriately. // Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd. // This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() { func Execute() {
cobra.CheckErr(rootCmd.Execute()) err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
} }
func init() { func init() {