mirror of
https://github.com/containers/podman.git
synced 2025-11-04 00:50:15 +08:00
update buildah and c/common to latest
also includes bumps for c/storage and c/image Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
4
vendor/github.com/containers/storage/images.go
generated
vendored
4
vendor/github.com/containers/storage/images.go
generated
vendored
@ -242,8 +242,8 @@ func (i *Image) recomputeDigests() error {
|
||||
if !bigDataNameIsManifest(name) {
|
||||
continue
|
||||
}
|
||||
if digest.Validate() != nil {
|
||||
return fmt.Errorf("validating digest %q for big data item %q: %w", string(digest), name, digest.Validate())
|
||||
if err := digest.Validate(); err != nil {
|
||||
return fmt.Errorf("validating digest %q for big data item %q: %w", string(digest), name, err)
|
||||
}
|
||||
// Deduplicate the digest values.
|
||||
if _, known := digests[digest]; !known {
|
||||
|
||||
Reference in New Issue
Block a user