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

_windows.v fix

This commit is contained in:
Alexander Medvednikov
2019-10-23 12:25:00 +03:00
parent 5ef4b2064f
commit 2e28691254
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ fn generate_vh(mod string) {
// Consts
println(full_mod_path)
mut vfiles := os.walk_ext(full_mod_path, '.v')
filtered := vfiles.filter(!it.ends_with('test.v') && !it.ends_with('_win.v')) // TODO merge once filter allows it
filtered := vfiles.filter(!it.ends_with('test.v') && !it.ends_with('_windows.v')) // TODO merge once filter allows it
println(filtered)
mut v := new_v(['foo.v'])
//v.pref.generating_vh = true