mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
15 lines
196 B
V
15 lines
196 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'), 'tools') {
|
|
exit(1)
|
|
}
|
|
}
|