Skip to content

Commit

Permalink
solver: ensure each ref in the result map is evaluated
Browse files Browse the repository at this point in the history
There was a typo in d709afd.

Signed-off-by: Justin Chadwell <[email protected]>
  • Loading branch information
jedevc committed Jan 10, 2024
1 parent 585efdc commit 77e7c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solver/llbsolver/provenance.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (b *provenanceBridge) Solve(ctx context.Context, req frontend.SolveRequest,
}
if req.Evaluate {
err = res.EachRef(func(ref solver.ResultProxy) error {
_, err := res.Ref.Result(ctx)
_, err := ref.Result(ctx)
return err
})
}
Expand Down

0 comments on commit 77e7c00

Please sign in to comment.