From 0b3527b144dc52c3693601bb511ca7fc248b6224 Mon Sep 17 00:00:00 2001 From: Miguel Sousa Date: Mon, 15 Jul 2019 21:55:25 -0700 Subject: [PATCH] minor --- buildVFs.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/buildVFs.sh b/buildVFs.sh index df28d14e07..f1b768bd7f 100755 --- a/buildVFs.sh +++ b/buildVFs.sh @@ -39,6 +39,7 @@ function build_var_font { sfntedit -a CFF2="$1"/.tb_cff2 "$otf_file" # add SVG table to variable OTF + echo 'Adding SVG table to' $2.otf "$addSVG" "$otf_file" "$DIR"/svg # build variable TTF @@ -52,17 +53,17 @@ function build_var_font { sfntedit -x cmap="$1"/.tb_cmap,GDEF="$1"/.tb_GDEF,GPOS="$1"/.tb_GPOS,GSUB="$1"/.tb_GSUB "$ttf_file" sfntedit -a cmap="$1"/.tb_cmap,GDEF="$1"/.tb_GDEF,GPOS="$1"/.tb_GPOS,GSUB="$1"/.tb_GSUB "$otf_file" - # move font files to target directory - mv "$otf_file" "$var_dir" - mv "$ttf_file" "$var_dir" + # move font files to target directory + mv "$otf_file" "$var_dir" + mv "$ttf_file" "$var_dir" # delete build artifacts rm "$1"/.tb_* rm "$1"/master_*/*.*tf - echo "Done with $2" - echo "" - echo "" + echo "Done with $2" + echo "" + echo "" } build_var_font "$DIR"/Roman/Masters $ro_name