1
0
mirror of https://github.com/packwiz/packwiz.git synced 2025-05-02 10:36:31 +02:00

ExecuteC already prints errors (fixes )

This commit is contained in:
comp500 2021-09-24 14:27:09 +01:00
parent db586b646b
commit d7851bd7fd

@ -22,7 +22,6 @@ var rootCmd = &cobra.Command{
// Execute starts the root command for packwiz // Execute starts the root command for packwiz
func Execute() { func Execute() {
if err := rootCmd.Execute(); err != nil { if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1) os.Exit(1)
} }
} }