1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/vbuild-examples.v

16 lines
308 B
V
Raw Normal View History

2019-12-01 12:50:13 +03:00
module main
2020-04-26 09:32:05 +03:00
import os
import testing
2019-12-01 12:50:13 +03:00
fn main() {
2020-12-20 20:01:02 +03:00
args_string := os.args[1..].join(' ')
params := args_string.all_before('build-examples')
if testing.v_build_failing(params, 'examples') {
2019-12-05 00:14:23 +03:00
exit(1)
}
if testing.v_build_failing(params + '-live', os.join_path('examples', 'hot_reload')) {
2019-12-01 12:50:13 +03:00
exit(1)
}
}