include image name reference err
Signed-off-by: Meredith Lancaster <malancas@github.com>
This commit is contained in:
parent
67ac04bd1c
commit
7067130603
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ func digestContainerImageArtifact(url string, client oci.Client) (*DigestedArtif
|
|||
named, err := reference.Parse(url)
|
||||
if err != nil {
|
||||
// cannot be parsed as a registry reference
|
||||
return nil, fmt.Errorf("artifact %s is not a valid registry reference", url)
|
||||
return nil, fmt.Errorf("artifact %s is not a valid registry reference: %w", url, err)
|
||||
}
|
||||
|
||||
digest, err := client.GetImageDigest(named.String())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue