Commit cfa5bad6 authored by Victor Marmol's avatar Victor Marmol

Merge pull request #6706 from eparis/kubelet-error

Fix printing errors from failed binary runs
parents bfa940ef 8e7d1419
......@@ -42,7 +42,7 @@ func main() {
verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error)
fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1)
}
}
......@@ -49,7 +49,7 @@ func main() {
verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error)
fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1)
}
}
......@@ -45,7 +45,7 @@ func main() {
verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error)
fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1)
}
}
......@@ -44,7 +44,7 @@ func main() {
verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error)
fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1)
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment