diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-17 11:39:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 11:39:02 -0400 |
commit | f8f5d9cef79aa98fa4b0b7261d3192bcdf880e3c (patch) | |
tree | 263db854d84c7cb21f581283170304f28689965f /cmd | |
parent | 454fc9fecd75f8e5cd9819739de876c121f5989d (diff) | |
parent | b6a264464f005eaf8670b22a820aa1db150c188f (diff) | |
download | podman-f8f5d9cef79aa98fa4b0b7261d3192bcdf880e3c.tar.gz podman-f8f5d9cef79aa98fa4b0b7261d3192bcdf880e3c.tar.bz2 podman-f8f5d9cef79aa98fa4b0b7261d3192bcdf880e3c.zip |
Merge pull request #5855 from baude/v2t1
Enable some testing
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/root.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/root.go b/cmd/podman/root.go index 729ca6aa7..667f7e588 100644 --- a/cmd/podman/root.go +++ b/cmd/podman/root.go @@ -82,7 +82,7 @@ func init() { func Execute() { if err := rootCmd.ExecuteContext(registry.GetContextWithOptions()); err != nil { - logrus.Error(err) + fmt.Fprintln(os.Stderr, "Error:", err.Error()) } else if registry.GetExitCode() == registry.ExecErrorCodeGeneric { // The exitCode modified from registry.ExecErrorCodeGeneric, // indicates an application |