mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2025-01-06 21:49:40 +02:00
39 lines
871 B
Bash
39 lines
871 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
|
|
|
|
printf "Running with options:\n%s\n" "$args"
|
|
|
|
# shellcheck disable=SC2086
|
|
if [ "$PN" -eq 1 ]; then
|
|
find /in -type f \
|
|
\( -iname '*.otf' -o -iname '*.ttf' -o -iname '*.woff' -o -iname '*.eot' -o -iname '*.ttc' \) \
|
|
-exec fontforge -script /nerd/font-patcher -out /out $args {} \;
|
|
else
|
|
njob=""
|
|
[ "$PN" -gt 1 ] && njob="-j $PN"
|
|
find /in -type f \
|
|
\( -iname '*.otf' -o -iname '*.ttf' -o -iname '*.woff' -o -iname '*.eot' -o -iname '*.ttc' \) \
|
|
| parallel $njob fontforge -script /nerd/font-patcher -out /out $args {}
|
|
fi
|
|
|
|
exit 0
|