mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-12-25 20:18:01 +02:00
96497b4fef
[why] When nothing is specified there is only one patcher running instead of number-of-threads patchers. But we want the speedup as default. [how] Use `-j0`, although it has a small bug. We could also use `-j100%` but then the output might confuse people even more? Reported-by: nobk <nobk@noreply.github.com> Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
40 lines
768 B
Bash
40 lines
768 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
args=""
|
|
|
|
# check all args for --out or -o
|
|
while [ "$#" -gt 0 ]; do
|
|
if [ "$1" = "-out" ] || [ "$1" = "--outputdir" ];then
|
|
# move past the option
|
|
shift
|
|
# and the value if there is one
|
|
case "$1" in
|
|
-*) continue ;;
|
|
*) shift $(( $# > 0 ? 1 : 0 )) ;;
|
|
esac
|
|
continue
|
|
fi
|
|
args="$args $1"
|
|
shift
|
|
done
|
|
|
|
if [ -z "$PN" ]; then
|
|
PN=0
|
|
fi
|
|
|
|
printf "Running with options:\n%s\nParallelism %s\n" "$args" "$PN"
|
|
|
|
# shellcheck disable=SC2086
|
|
find /in -type f \
|
|
\( -iname '*.otf' -o -iname '*.ttf' -o -iname '*.woff' -o -iname '*.eot' -o -iname '*.ttc' \) \
|
|
-print0 \
|
|
| parallel --verbose --null "--jobs=${PN}" fontforge -script /nerd/font-patcher -out /out $args {}
|
|
|
|
if [ -f font-patcher-log.txt ]; then
|
|
cp -f font-patcher-log.txt /out
|
|
fi
|
|
|
|
exit 0
|