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

@@ -21,7 +21,6 @@ limitations under the License.
package main
import (
"fmt"
"math/rand"
"os"
"time"
@@ -45,7 +44,6 @@ func main() {
defer logs.FlushLogs()
if err := command.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
}
}