diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-22 21:23:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 21:23:42 +0200 |
commit | cac05c85887accb71763f7b21a189a14426f4cb4 (patch) | |
tree | 0830469afe2c70bf6658278ba4f391bc41be7159 /pkg/domain/infra/abi | |
parent | 9a910efcf65aa277ccf558e76fd0ead96559eb11 (diff) | |
parent | 6fdcc09a2027d9c929af0389fba131c72b103fcd (diff) | |
download | podman-cac05c85887accb71763f7b21a189a14426f4cb4.tar.gz podman-cac05c85887accb71763f7b21a189a14426f4cb4.tar.bz2 podman-cac05c85887accb71763f7b21a189a14426f4cb4.zip |
Merge pull request #5944 from rhatdan/untag
Fix integration tests for untag
Diffstat (limited to 'pkg/domain/infra/abi')
-rw-r--r-- | pkg/domain/infra/abi/images.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/images.go b/pkg/domain/infra/abi/images.go index 32f7d75e5..d0b7b42b5 100644 --- a/pkg/domain/infra/abi/images.go +++ b/pkg/domain/infra/abi/images.go @@ -303,6 +303,10 @@ func (ir *ImageEngine) Untag(ctx context.Context, nameOrId string, tags []string if err != nil { return err } + // If only one arg is provided, all names are to be untagged + if len(tags) == 0 { + tags = newImage.Names() + } for _, tag := range tags { if err := newImage.UntagImage(tag); err != nil { return err |