1
0
mirror of https://github.com/ryanoasis/nerd-fonts.git synced 2025-01-25 03:32:02 +02:00

docker: Transport return code to outside

Fixes: #1316

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
Fini Jastrow 2023-07-11 22:34:10 +02:00
parent c0d9a22d5f
commit c173f661a0

View File

@ -1,5 +1,7 @@
#!/bin/sh
set -e
args=""
# check all args for --out or -o
@ -22,3 +24,5 @@ printf "Running with options:\n%s\n" "$args"
# shellcheck disable=SC2086
for f in /in/*.otf /in/*.ttf /in/*.woff /in/*.eot /in/*.ttc; do [ -f "$f" ] && fontforge -script /nerd/font-patcher -out /out $args "$f"; done
exit 0