Skip to content

Commit

Permalink
Merge pull request #18365 from nalind/copypasta
Browse files Browse the repository at this point in the history
Fix a copy/paste error in an error message
  • Loading branch information
openshift-merge-robot authored Apr 27, 2023
2 parents 129c075 + a0c7bb2 commit b7b3a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/domain/infra/tunnel/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit b7b3a19

Please sign in to comment.