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

Fix: return correct exit code

This commit is contained in:
koplas 2024-12-10 10:13:42 +01:00
parent 16e86051c5
commit df65ad13cb
No known key found for this signature in database

View file

@ -150,7 +150,7 @@ func run(opts *options, files []string) error {
} }
// Exit code is based on validation results // Exit code is based on validation results
os.Exit(exitCodeAllValid) os.Exit(exitCode)
return nil return nil
} }