Merge pull request #79790 from ramnar/master

Remove duplicate error messages
This commit is contained in:
Kubernetes Prow Robot 2019-07-08 16:00:27 -07:00 committed by GitHub
commit 17e9b21001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
}
}