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

os: fix font.v compilation

This commit is contained in:
Alexander Medvednikov 2022-10-27 11:13:43 +03:00
parent e1ffc76efd
commit a134c09718

View File

@ -68,7 +68,7 @@ pub fn default() string {
} }
} }
} }
mut fm := os.execute("fc-match --format='%{file}\n' -s") mut fm := os.execute("fc-match --format='%\{file}\n' -s")
if fm.exit_code == 0 { if fm.exit_code == 0 {
lines := fm.output.split('\n') lines := fm.output.split('\n')
for l in lines { for l in lines {