Work-Sans/sources/tools/old/prep.sh
weiweihuanghuang e158994690 v2.02 update
- Fixed differing OS/2.usWinDescent in the Italic masters
- Updated build process since fontmake 1.9.1 supports glyphs app brace tricks automatically
2019-02-28 14:09:20 +11:00

10 lines
357 B
Bash

# For every .glyphs file in this directory, this script makes a .glyphs file where only the brace glyphs will be exporting, determines the style on whether "Italic" is in the filename
for i in *.glyphs; do
if [[ "$i" =~ "Italic" ]]; then
style="Italic"
else
style="Upright"
fi
python tools/makeGlyphsFileWithOnlyBraceGlyphs.py "$i" "$style"
done