build_woff2 355 B

12345678910111213141516
  1. #!/bin/bash -euo pipefail
  2. # requires woff2_compress (get from https://github.com/bramstein/homebrew-webfonttools)
  3. cd "`dirname $0`/.."
  4. source venv/bin/activate
  5. rm -rf distr/*/*.woff2
  6. ttfs=$(ls distr/*/*.ttf)
  7. for ttf in $ttfs; do
  8. woff2_compress $ttf
  9. done
  10. mkdir -p distr/woff2
  11. mv distr/*/*.woff2 distr/woff2
  12. rm distr/woff2/FiraCodeFixed-Retina.woff2