mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tools: fix v build-examples
on windows
This commit is contained in:
parent
79de408ef0
commit
bf835d47d8
@ -12,18 +12,18 @@ const efolders = [
|
||||
fn main() {
|
||||
args_string := os.args[1..].join(' ')
|
||||
params := args_string.all_before('build-examples')
|
||||
skip_prefixes := efolders.map(os.join_path(vroot, it))
|
||||
skip_prefixes := efolders.map(os.real_path(os.join_path_single(vroot, it)))
|
||||
res := testing.v_build_failing_skipped(params, 'examples', skip_prefixes, fn (mut session testing.TestSession) {
|
||||
for x in efolders {
|
||||
pathsegments := x.split_any('/')
|
||||
session.add(os.join_path(vroot, ...pathsegments))
|
||||
session.add(os.real_path(os.join_path(vroot, ...pathsegments)))
|
||||
}
|
||||
})
|
||||
if res {
|
||||
exit(1)
|
||||
}
|
||||
if testing.v_build_failing_skipped(params + '-live', os.join_path('examples', 'hot_reload'),
|
||||
skip_prefixes, fn (mut session testing.TestSession) {})
|
||||
if testing.v_build_failing_skipped(params + '-live', os.join_path_single('examples',
|
||||
'hot_reload'), skip_prefixes, fn (mut session testing.TestSession) {})
|
||||
{
|
||||
exit(1)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user