From 5ee3fe5c138b453bb13fb1f0ed4036de7efa4f2c Mon Sep 17 00:00:00 2001 From: eknowles <817611+eknowles@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:26:08 +0100 Subject: [PATCH] chore: fix spelling in cosign error message --- src/pkg/packager/prepare.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/packager/prepare.go b/src/pkg/packager/prepare.go index 1e43335898..cb4bcd1e8b 100644 --- a/src/pkg/packager/prepare.go +++ b/src/pkg/packager/prepare.go @@ -317,7 +317,7 @@ func (p *Packager) findImages(ctx context.Context) (map[string][]string, error) spinner.Updatef("Looking up cosign artifacts for discovered images (%d/%d)", idx+1, len(imagesMap[component.Name])) cosignArtifacts, err := utils.GetCosignArtifacts(image) if err != nil { - return nil, fmt.Errorf("could not lookup the cosing artifacts for image %s: %w", image, err) + return nil, fmt.Errorf("could not lookup the cosign artifacts for image %s: %w", image, err) } cosignArtifactList = append(cosignArtifactList, cosignArtifacts...) }