From fd9dd13cc2d0729f91b8acf5808822e17ea0c75a Mon Sep 17 00:00:00 2001 From: ramnar Date: Thu, 4 Jul 2019 17:25:33 +0530 Subject: [PATCH] Remove duplicate error messages Remove duplicate error messages when command fails --- hack/conformance/check_conformance_test_requirements.go | 1 - 1 file changed, 1 deletion(-) diff --git a/hack/conformance/check_conformance_test_requirements.go b/hack/conformance/check_conformance_test_requirements.go index 30897f1a151..82988a621ce 100644 --- a/hack/conformance/check_conformance_test_requirements.go +++ b/hack/conformance/check_conformance_test_requirements.go @@ -151,7 +151,6 @@ func newCommand() *cobra.Command { func main() { command := newCommand() if err := command.Execute(); err != nil { - fmt.Fprintf(os.Stderr, "error: %v\n", err) os.Exit(1) } }