Skip to content

Commit c3cd3ea

Browse files
author
Lukas Hupe
committed
fix relativ paths
1 parent 85e70c2 commit c3cd3ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/findfonts.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else
2020
end
2121
function _font_paths()
2222
result = String[]
23-
for p in ("/usr/share/fonts", joinpath(homedir(), "/.fonts"), joinpath(homedir(), "/.local/share/fonts", "/usr/local/share/fonts",)
23+
for p in ("/usr/share/fonts", joinpath(homedir(), ".fonts"), joinpath(homedir(), ".local/share/fonts"), "/usr/local/share/fonts",)
2424
if isdir(p)
2525
add_recursive(result, p)
2626
end

0 commit comments

Comments
 (0)