From e85d9330d5038f19693b5758a529b37aaff82d2a Mon Sep 17 00:00:00 2001 From: Dani Llewellyn Date: Thu, 19 Aug 2021 00:04:13 +0100 Subject: [PATCH] Update docker-entrypoint.sh * Add quotes around the variable containing the detected file name in `/in` to allow for spaces in the file names. --- bin/scripts/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/scripts/docker-entrypoint.sh b/bin/scripts/docker-entrypoint.sh index beefebe53..f0d272b0b 100644 --- a/bin/scripts/docker-entrypoint.sh +++ b/bin/scripts/docker-entrypoint.sh @@ -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