#!/bin/sh # Generated of fonts # # build if [[ -n "$(ls -a ./lab/)" && -f ./lab/metadata.json && -f ./lab/svg2ttf.py ]]; then ./lab/svg2ttf.py ./lab/metadata.json fi # copy files to fonts if [[ -n "$(ls -a ./lab/libresocial.{svg,otf,ttf,woff})" ]]; then rm -fv ./fonts/libresocial.{svg,otf,ttf,woff} mv -fv ./lab/libresocial.{svg,otf,ttf,woff} ./fonts/ fi