diff --git a/cmd/gen-manifests/main.go b/cmd/gen-manifests/main.go index 22ebc2508..47caf9027 100644 --- a/cmd/gen-manifests/main.go +++ b/cmd/gen-manifests/main.go @@ -164,7 +164,7 @@ func makeManifestJob(name string, imgType distro.ImageType, cr composeRequest, d err = fmt.Errorf("[%s] nil package specs", filename) return } - manifest, err := imgType.Manifest(cr.Blueprint.Customizations, options, repos, packageSpecs, containerSpecs, seedArg) + manifest, _, err := imgType.Manifest(cr.Blueprint.Customizations, options, repos, packageSpecs, containerSpecs, seedArg) if err != nil { err = fmt.Errorf("[%s] failed: %s", filename, err) return diff --git a/cmd/osbuild-pipeline/main.go b/cmd/osbuild-pipeline/main.go index ed4c1e459..bc434bd5a 100644 --- a/cmd/osbuild-pipeline/main.go +++ b/cmd/osbuild-pipeline/main.go @@ -214,7 +214,7 @@ func main() { composeRequest.OSTree.Ref = imageType.OSTreeRef() } - manifest, err := imageType.Manifest(composeRequest.Blueprint.Customizations, + manifest, _, err := imageType.Manifest(composeRequest.Blueprint.Customizations, options, repos, depsolvedSets, diff --git a/cmd/osbuild-store-dump/main.go b/cmd/osbuild-store-dump/main.go index df71afb40..c57357f27 100644 --- a/cmd/osbuild-store-dump/main.go +++ b/cmd/osbuild-store-dump/main.go @@ -30,7 +30,7 @@ func getManifest(bp blueprint.Blueprint, t distro.ImageType, a distro.Arch, d di } pkgSpecSets[name] = res } - manifest, err := t.Manifest(bp.Customizations, distro.ImageOptions{}, repos, pkgSpecSets, nil, 0) + manifest, _, err := t.Manifest(bp.Customizations, distro.ImageOptions{}, repos, pkgSpecSets, nil, 0) if err != nil { panic(err) }