Merge pull request #624 from lovesegfault/repeated-fonts

fix(modules/fonts): ignore repeated fonts
This commit is contained in:
Domen Kožar 2023-04-20 18:57:12 +02:00 committed by GitHub
commit a1ee4d333b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@ in
mkdir -p $out/Library/Fonts
for path in $paths; do
find -L $path/share/fonts -type f -print0 | while IFS= read -rd "" f; do
ln -s "$f" $out/Library/Fonts
ln -sf "$f" $out/Library/Fonts
done
done
'';