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

remvoe dupe in main & fix js string.builder (#2233)

This commit is contained in:
joe-conigliaro
2019-10-05 18:07:10 +10:00
committed by GitHub
parent a62dec2053
commit 72ae12877e
2 changed files with 13 additions and 4 deletions

View File

@@ -557,9 +557,6 @@ fn (v &V) v_files_from_dir(dir string) []string {
if file.ends_with('_mac.v') && v.os != .mac {
continue
}
if file.ends_with('_js.v') && v.os != .js {
continue
}
if file.ends_with('_nix.v') && (v.os == .windows || v.os == .msvc) {
continue
}