mirror of
https://github.com/weiweihuanghuang/Work-Sans.git
synced 2024-11-22 21:33:10 +03:00
10 lines
357 B
Bash
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 |