Skip to content

Commit

Permalink
add ref to 'missing reference' message
Browse files Browse the repository at this point in the history
  • Loading branch information
northdpole committed Jun 3, 2024
1 parent b22059d commit 77448f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/components/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func FromReference(ctx context.Context, ref string) (Component, error) {

task, err := manifests.LoadTektonV1Beta1Task(ctx, ".", ref)
if err != nil {
return zero, errors.Errorf("could not load reference: %w", err)
return zero, errors.Errorf("%s:could not load reference: %w", ref, err)
}

componentType, err := ValidateTask(task)
Expand Down

0 comments on commit 77448f1

Please sign in to comment.