FiraCode/script/build_woff2.sh

18 wiersze
411 B
Bash
Czysty Zwykły widok Historia

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