1
0
Fork 0
mirror of synced 2024-06-03 19:25:04 +12:00
FiraCode/script/build_woff2
Nikita Prokopov d42e7276fa Fira Code v4
2020-05-18 04:10:03 +02:00

17 lines
360 B
Bash
Executable file

#!/bin/bash -e
# requires woff2_compress (get from https://github.com/bramstein/homebrew-webfonttools)
rm -rf distr/woff2
ttfs=$(ls distr/*/*.ttf)
for ttf in $ttfs; do
woff2_compress $ttf
done
rm distr/ttf/FiraCode-Retina.woff2
mkdir -p distr/woff2
woff2s=$(ls distr/*/*.woff2)
for woff2 in $woff2s; do
mv $woff2 distr/woff2/$(basename $woff2)
done