summaryrefslogtreecommitdiff
path: root/cmd/podman/inspect.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-01-18 17:33:52 +0100
committerGitHub <noreply@github.com>2019-01-18 17:33:52 +0100
commit27de1c19e9387949e4b600fca6d6d6434818abe7 (patch)
tree456d3c7c6272c3a5efa03b224d2b3536a941041a /cmd/podman/inspect.go
parenta2ab36d0d115718b5d08ccca9ff567de1d3db20a (diff)
parentf1c5b1e912ab380ca9e7c2adea39c0c5e974794d (diff)
downloadpodman-27de1c19e9387949e4b600fca6d6d6434818abe7.tar.gz
podman-27de1c19e9387949e4b600fca6d6d6434818abe7.tar.bz2
podman-27de1c19e9387949e4b600fca6d6d6434818abe7.zip
Merge pull request #2181 from vrothberg/issue-2159
podman-inspect: don't ignore errors
Diffstat (limited to 'cmd/podman/inspect.go')
-rw-r--r--cmd/podman/inspect.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/podman/inspect.go b/cmd/podman/inspect.go
index 6ffcde55f..2f1e97c6c 100644
--- a/cmd/podman/inspect.go
+++ b/cmd/podman/inspect.go
@@ -87,6 +87,9 @@ func inspectCmd(c *cli.Context) error {
}
inspectedObjects, iterateErr := iterateInput(getContext(), c, args, runtime, inspectType)
+ if iterateErr != nil {
+ return iterateErr
+ }
var out formats.Writer
if outputFormat != "" && outputFormat != formats.JSONString {
@@ -97,8 +100,7 @@ func inspectCmd(c *cli.Context) error {
out = formats.JSONStructArray{Output: inspectedObjects}
}
- formats.Writer(out).Out()
- return iterateErr
+ return formats.Writer(out).Out()
}
// func iterateInput iterates the images|containers the user has requested and returns the inspect data and error