gen-manifests: change default output directory

Change the default output directory to the one in the repo.
Originally it was set to a different directory to avoid overwriting the
manifests that had image-info, but those are long gone.
This commit is contained in:
Achilleas Koutsou 2022-11-08 19:07:54 +01:00 committed by Christian Kellner
parent 5c8b5995bf
commit bb75cc0947

View file

@ -347,7 +347,7 @@ func main() {
// common args
var outputDir, cacheRoot string
var nWorkers int
flag.StringVar(&outputDir, "output", "test/data/manifests.plain/", "manifest store directory")
flag.StringVar(&outputDir, "output", "test/data/manifests/", "manifest store directory")
flag.IntVar(&nWorkers, "workers", 16, "number of workers to run concurrently")
flag.StringVar(&cacheRoot, "cache", "/tmp/rpmmd", "rpm metadata cache directory")