diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-25 11:16:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 11:16:45 -0700 |
commit | e900e95f9aa6a22eeef9f78573dfb88df2f10d49 (patch) | |
tree | ea8137507f196ad7bdd3a080e4b4e769ce6ecae7 /cmd/podman/images_prune.go | |
parent | 36f479097d6617bd4a078144a8709c19f865eb8f (diff) | |
parent | 4daac4736e3476211de7c1672bb5161191666a91 (diff) | |
download | podman-e900e95f9aa6a22eeef9f78573dfb88df2f10d49.tar.gz podman-e900e95f9aa6a22eeef9f78573dfb88df2f10d49.tar.bz2 podman-e900e95f9aa6a22eeef9f78573dfb88df2f10d49.zip |
Merge pull request #2990 from nalind/image-parent-child
image: rework parent/child/history matching
Diffstat (limited to 'cmd/podman/images_prune.go')
-rw-r--r-- | cmd/podman/images_prune.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images_prune.go b/cmd/podman/images_prune.go index 84181d0a2..c522c8b15 100644 --- a/cmd/podman/images_prune.go +++ b/cmd/podman/images_prune.go @@ -45,7 +45,7 @@ func pruneImagesCmd(c *cliconfig.PruneImagesValues) error { // Call prune; if any cids are returned, print them and then // return err in case an error also came up - pruneCids, err := runtime.PruneImages(c.All) + pruneCids, err := runtime.PruneImages(getContext(), c.All) if len(pruneCids) > 0 { for _, cid := range pruneCids { fmt.Println(cid) |