v.builder: change exit code of `v -check file.v` to 0, when file.v is clean from any errors.

pull/11426/head
Delyan Angelov 2021-09-07 07:29:45 +03:00
parent aedb6b8e84
commit aec016bb14
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 4 additions and 1 deletions

View File

@ -439,8 +439,11 @@ fn (mut b Builder) print_warnings_and_errors() {
} }
b.show_total_warns_and_errors_stats() b.show_total_warns_and_errors_stats()
if b.nr_errors > 0 {
exit(1) exit(1)
} }
exit(0)
}
if b.pref.is_verbose && b.checker.nr_warnings > 1 { if b.pref.is_verbose && b.checker.nr_warnings > 1 {
println('$b.checker.nr_warnings warnings') println('$b.checker.nr_warnings warnings')