1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-09-17 13:37:21 +03:00

Merge pull request #59 from dolmen/fix/bashisms

build.sh: fix bash-isms
This commit is contained in:
Miguel Sousa 2013-09-07 12:58:05 -07:00
commit 94e8f996c0

View File

@ -1,15 +1,13 @@
#!/bin/sh #!/bin/sh
family=SourceCodePro family=SourceCodePro
weights=('Black' 'Bold' 'ExtraLight' 'Light' 'Medium' 'Regular' 'Semibold') weights='Black Bold ExtraLight Light Medium Regular Semibold'
# clean existing build artifacts # clean existing build artifacts
rm -rf target/ rm -rf target/
mkdir target/ mkdir target/ target/OTF/ target/TTF/
mkdir target/OTF/
mkdir target/TTF/
for w in ${weights[@]}; for w in $weights
do do
makeotf -f Roman/$w/font.pfa -r -o target/OTF/$family-$w.otf makeotf -f Roman/$w/font.pfa -r -o target/OTF/$family-$w.otf
makeotf -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/TTF/$family-$w.ttf makeotf -f Roman/$w/font.ttf -gf GlyphOrderAndAliasDB_TT -r -o target/TTF/$family-$w.ttf