1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00

minor updates to Enumerate method, integrate enumerate in cmd downloader

This commit is contained in:
Kunz, Immanuel 2024-04-23 19:09:22 +02:00
parent d64aa20cee
commit 457d519990
3 changed files with 43 additions and 20 deletions

View file

@ -41,6 +41,11 @@ func run(cfg *config, domains []string) error {
d.forwarder = f
}
// First, enumerate existing PMDs, then load
err = d.runEnumerate(domains)
if err != nil {
return err
}
return d.run(ctx, domains)
}