generate-fontconfig: Fix sorted config

[why]
Table is still unsorted.

[how]
First we ran on '.', which includes all fonts, and then the font
directories one by one, but we have traversed them already ...

Do not run on '.' :-}

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
Fini Jastrow 2022-09-08 11:23:35 +02:00 committed by Fini
parent 5454877c01
commit 629b29507d

View file

@ -41,7 +41,7 @@ echo "$LINE_PREFIX Generating fontconfig for: monospace"
} >> "$to"
#find ./Hack -maxdepth 0 -type d | # uncomment to test 1 font
find . -maxdepth 1 -type d | sort | # uncomment to get all fonts
find . -mindepth 1 -maxdepth 1 -type d | sort | # uncomment to get all fonts
while read -r filename
do