15 lines
200 B
V
15 lines
200 B
V
|
module main
|
||
|
|
||
|
import (
|
||
|
os
|
||
|
testing
|
||
|
)
|
||
|
|
||
|
fn main() {
|
||
|
args := os.args
|
||
|
args_string := args[1..].join(' ')
|
||
|
if testing.v_build_failing(args_string.all_before('build-tools'), 'cmd/tools') {
|
||
|
exit(1)
|
||
|
}
|
||
|
}
|