Merge pull request #79493 from odinuge/kube-cmd-double-print

Remove duplicate error messages from cli commands
This commit is contained in:
Kubernetes Prow Robot
2019-06-28 13:57:41 -07:00
committed by GitHub
10 changed files with 0 additions and 19 deletions

View File

@@ -18,7 +18,6 @@ package main
import (
goflag "flag"
"fmt"
"math/rand"
"os"
"time"
@@ -48,7 +47,6 @@ func main() {
defer logs.FlushLogs()
if err := command.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
}
}