1
0
mirror of https://github.com/ryanoasis/nerd-fonts.git synced 2024-12-01 16:55:57 +02:00

Update docker-entrypoint.sh

* Add quotes around the variable containing the detected file name in `/in` to allow for spaces in the file names.
This commit is contained in:
Dani Llewellyn 2021-08-19 00:04:13 +01:00
parent bc4416e176
commit e85d9330d5

View File

@ -16,4 +16,4 @@ for i; do
fi
done
for f in /in/*.otf /in/*.ttf /in/*.woff /in/*.eot; do [ -f $f ] && fontforge -script /nerd/font-patcher -out /out $args $f; done
for f in /in/*.otf /in/*.ttf /in/*.woff /in/*.eot; do [ -f "$f" ] && fontforge -script /nerd/font-patcher -out /out $args "$f"; done