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

embed: move to v.embed_file, fix CI failing test

This commit is contained in:
Delyan Angelov
2021-01-16 20:03:07 +02:00
parent d258733752
commit 5ae55731b9
12 changed files with 146 additions and 129 deletions

View File

@@ -43,7 +43,7 @@ pub mut:
}
fn (mut pc PkgConfig) parse_list_no_comma(s string) []string {
return pc.parse_list( s.replace(',', ' ') )
return pc.parse_list(s.replace(',', ' '))
}
fn (mut pc PkgConfig) parse_list(s string) []string {