Added missing fonts and wip chain build

This commit is contained in:
Willem Cazander 2022-03-11 14:20:22 +01:00
parent 81aee053dd
commit 69c081ae48
16 changed files with 192 additions and 33 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
mkdir -p $2;
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
for FILE in `ls $1`
do
node $SCRIPT_DIR/conv-font.js $1/$FILE > $2/$FILE.xml
done