Skip to content

Commit

Permalink
Add missing err check (#166)
Browse files Browse the repository at this point in the history
Signed-off-by: Jon Johnson <jon.johnson@chainguard.dev>
  • Loading branch information
jonjohnsonjr authored Sep 13, 2023
1 parent f877e96 commit 55ea67c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/provider/config_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ func (d *ConfigDataSource) resolvePackageList(ctx context.Context, ic apkotypes.
build.WithExtraKeys(d.popts.keyring),
build.WithExtraRepos(d.popts.repositories),
)
if err != nil {
return err
}

// Determine the exact versions of our transitive packages and lock them
// down in the "resolved" configuration, so that this build may be
Expand Down

0 comments on commit 55ea67c

Please sign in to comment.