diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-09 08:46:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 08:46:44 -0500 |
commit | b875c5c27c503108f1984256833a9a2da4d0c5d1 (patch) | |
tree | 9c663f0c33849394373810b12f3db2974c3efaae /cmd/podman/images | |
parent | ae7f601649fd9d5e57ee0f6b0d35283bc4485259 (diff) | |
parent | a59e2a1a114c039e1780aa2b08b9452dc569cdf4 (diff) | |
download | podman-b875c5c27c503108f1984256833a9a2da4d0c5d1.tar.gz podman-b875c5c27c503108f1984256833a9a2da4d0c5d1.tar.bz2 podman-b875c5c27c503108f1984256833a9a2da4d0c5d1.zip |
Merge pull request #8599 from rhatdan/prune
Repeat system pruning until there is nothing removed
Diffstat (limited to 'cmd/podman/images')
-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 e68fe5f40..268a68681 100644 --- a/cmd/podman/images/prune.go +++ b/cmd/podman/images/prune.go @@ -71,5 +71,5 @@ Are you sure you want to continue? [y/N] `) return err } - return utils.PrintImagePruneResults(results) + return utils.PrintImagePruneResults(results, false) } |