summaryrefslogtreecommitdiff
path: root/cmd/podman/images.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-01-29 15:12:29 -0600
committerbaude <bbaude@redhat.com>2019-01-30 08:32:28 -0600
commitca53122338168c867e75de0ce832d80ac7f27428 (patch)
tree6415911121b709e17bac8744ee13c3f639af872f /cmd/podman/images.go
parentad5579e1d9905996612dd135467ee2ee5f62b7d3 (diff)
downloadpodman-ca53122338168c867e75de0ce832d80ac7f27428.tar.gz
podman-ca53122338168c867e75de0ce832d80ac7f27428.tar.bz2
podman-ca53122338168c867e75de0ce832d80ac7f27428.zip
Fix regression in ps with custom format
Using the table keyword in go templating had regressed and was no longer working. Fixes: 2221 Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/images.go')
-rw-r--r--cmd/podman/images.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/cmd/podman/images.go b/cmd/podman/images.go
index 031f06618..d4f405975 100644
--- a/cmd/podman/images.go
+++ b/cmd/podman/images.go
@@ -188,13 +188,6 @@ func imagesCmd(c *cli.Context) error {
}
opts.outputformat = opts.setOutputFormat()
- /*
- podman does not implement --all for images
-
- intermediate images are only generated during the build process. they are
- children to the image once built. until buildah supports caching builds,
- it will not generate these intermediate images.
- */
images, err := runtime.GetImages()
if err != nil {
return errors.Wrapf(err, "unable to get images")