mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-11-25 16:47:37 +02:00
41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# version: 1.0.0
|
|
# Iterates over all patched fonts directories
|
|
# to generate ruby cask files for homebrew-fonts (https://github.com/caskroom/homebrew-fonts)
|
|
# adds Windows versions of the fonts as well (casks files just won't download them)
|
|
|
|
#set -x
|
|
|
|
LINE_PREFIX="# [Nerd Fonts] "
|
|
|
|
cd ../../patched-fonts/ || {
|
|
echo >&2 "$LINE_PREFIX Could not find patched fonts directory"
|
|
exit 1
|
|
}
|
|
|
|
# limit archiving to given pattern (first script param) or entire root folder if no param given:
|
|
if [ $# -eq 1 ]
|
|
then
|
|
pattern="./$1"
|
|
echo "$LINE_PREFIX Limiting archive to pattern './$pattern'"
|
|
else
|
|
pattern="."
|
|
echo "$LINE_PREFIX No limting pattern given, will search entire folder"
|
|
fi
|
|
|
|
#find ./Hack -maxdepth 0 -type d | # uncomment to test 1 font
|
|
#find ./ProFont -maxdepth 0 -type d | # uncomment to test 1 font
|
|
find $pattern -maxdepth 1 -type d | # uncomment to test all fonts
|
|
while read -r filename
|
|
do
|
|
|
|
basename=$(basename "$filename")
|
|
searchdir=$filename
|
|
outputdir=$PWD/../archives/
|
|
|
|
[[ -d "$outputdir" ]] || mkdir -p "$outputdir"
|
|
|
|
zip "$outputdir/$basename" -rj "$searchdir" -i '*.[o,t]tf'
|
|
|
|
done
|