Merge pull request #18365 from nalind/copypasta

Fix a copy/paste error in an error message
This commit is contained in:
OpenShift Merge Robot 2023-04-27 09:36:29 -04:00 committed by GitHub
commit b7b3a19768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ func (ir *ImageEngine) ManifestPush(ctx context.Context, name, destination strin
}
digest, err := manifests.Push(ir.ClientCtx, name, destination, options)
if err != nil {
return "", fmt.Errorf("adding to manifest list %s: %w", name, err)
return "", fmt.Errorf("pushing manifest list %s: %w", name, err)
}
if opts.Rm {