1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 18:15:42 +01:00

In case of error, log filename, too.

This commit is contained in:
Sascha L. Teichmann 2023-01-28 00:56:30 +01:00
parent 0c39819930
commit 2f280c69ac

View file

@ -435,6 +435,8 @@ func main() {
} }
for _, arg := range args { for _, arg := range args {
check(p.process(arg)) if err := p.process(arg); err != nil {
log.Fatalf("error: processing %q failed: %v\n", arg, err)
}
} }
} }