mirror of https://github.com/containers/podman.git
Merge pull request #7282 from ParkerVR/tags-digest
Img Pull - Error pass through
This commit is contained in:
commit
518e83250e
|
|
@ -226,7 +226,7 @@ func (ir *ImageEngine) Pull(ctx context.Context, rawImage string, options entiti
|
|||
if err != nil {
|
||||
imageRef, err = alltransports.ParseImageName(fmt.Sprintf("%s%s", dockerPrefix, rawImage))
|
||||
if err != nil {
|
||||
return nil, errors.Errorf("invalid image reference %q", rawImage)
|
||||
return nil, errors.Wrapf(err, "invalid image reference %q", rawImage)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue