mirror of
https://github.com/containers/podman.git
synced 2025-09-28 01:04:28 +08:00
bump github.com/containers/common
Update github.com/containers/common from 0.43.0 to 0.43.2. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
This commit is contained in:
12
vendor/github.com/containers/common/libimage/image.go
generated
vendored
12
vendor/github.com/containers/common/libimage/image.go
generated
vendored
@ -499,9 +499,15 @@ func (i *Image) Untag(name string) error {
|
||||
return errors.Wrapf(err, "error normalizing name %q", name)
|
||||
}
|
||||
|
||||
if _, isDigested := ref.(reference.Digested); isDigested {
|
||||
return errors.Wrap(errUntagDigest, name)
|
||||
}
|
||||
// FIXME: this is breaking Podman CI but must be re-enabled once
|
||||
// c/storage supports alterting the digests of an image. Then,
|
||||
// Podman will do the right thing.
|
||||
//
|
||||
// !!! Also make sure to re-enable the tests !!!
|
||||
//
|
||||
// if _, isDigested := ref.(reference.Digested); isDigested {
|
||||
// return errors.Wrap(errUntagDigest, name)
|
||||
// }
|
||||
|
||||
name = ref.String()
|
||||
|
||||
|
Reference in New Issue
Block a user