From f4f8603db5bb068c9599dd07bccf537c4453789f Mon Sep 17 00:00:00 2001 From: Martin Sehnoutka Date: Mon, 10 Feb 2020 09:47:46 +0100 Subject: [PATCH] osbuild-compose: store now takes a distro registry previously it took only a single distro, but now it requires the whole registry --- cmd/osbuild-composer/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/osbuild-composer/main.go b/cmd/osbuild-composer/main.go index 522e55aac..e8d7fb07e 100644 --- a/cmd/osbuild-composer/main.go +++ b/cmd/osbuild-composer/main.go @@ -62,7 +62,7 @@ func main() { logger = log.New(os.Stdout, "", 0) } - store := store.New(&stateDir, distribution) + store := store.New(&stateDir, distribution, *distros) jobAPI := jobqueue.New(logger, store) weldrAPI := weldr.New(rpm, currentArch(), distribution, logger, store)