From d7851bd7fd368270b23987aac4aae2bbb62967ae Mon Sep 17 00:00:00 2001 From: comp500 Date: Fri, 24 Sep 2021 14:27:09 +0100 Subject: [PATCH] ExecuteC already prints errors (fixes #55) --- cmd/root.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 2ec39ca..94641a4 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -22,7 +22,6 @@ var rootCmd = &cobra.Command{ // Execute starts the root command for packwiz func Execute() { if err := rootCmd.Execute(); err != nil { - fmt.Println(err) os.Exit(1) } }