1
0
Fork 0
mirror of synced 2024-05-21 04:53:25 +12:00
FiraCode/script/build_woff2
2020-06-17 22:13:23 +02:00

17 lines
366 B
Bash
Executable file

#!/bin/bash -euo pipefail
# requires woff2_compress (get from https://github.com/bramstein/homebrew-webfonttools)
cd "`dirname $0`/.."
[ -d venv ] && source venv/bin/activate
rm -rf distr/*/*.woff2
ttfs=$(ls distr/*/*.ttf)
for ttf in $ttfs; do
woff2_compress $ttf
done
mkdir -p distr/woff2
mv distr/*/*.woff2 distr/woff2
rm distr/woff2/FiraCode-Retina.woff2