1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-09-11 21:07:26 +03:00
FiraCode/script/build_woff2

17 lines
369 B
Plaintext
Raw Normal View History

2020-06-08 17:10:00 +03:00
#!/bin/bash -euo pipefail
2020-04-09 19:56:19 +03:00
# requires woff2_compress (get from https://github.com/bramstein/homebrew-webfonttools)
2020-06-08 17:10:00 +03:00
cd "`dirname $0`/.."
2020-06-17 23:06:57 +03:00
[ -d venv ] && source venv/bin/activate
2020-06-08 17:10:00 +03:00
rm -rf distr/*/*.woff2
2020-04-09 19:56:19 +03:00
ttfs=$(ls distr/*/*.ttf)
for ttf in $ttfs; do
woff2_compress $ttf
done
mkdir -p distr/woff2
2020-06-08 17:10:00 +03:00
mv distr/*/*.woff2 distr/woff2
rm -f distr/woff2/FiraCode-Retina.woff2