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

tools: fix building vdoctor.v with v build-tools

This commit is contained in:
Delyan Angelov
2022-05-04 23:30:44 +03:00
parent a6b3e5d6a5
commit 01c1892995
3 changed files with 6 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ fn main() {
//
mut skips := []string{}
for stool in tools_in_subfolders {
skips << os.join_path(tfolder, stool)
skips << os.join_path(tfolder, stool).replace('\\', '/')
}
buildopts := args_string.all_before('build-tools')
mut session := testing.prepare_test_session(buildopts, folder, skips, main_label)