From c9a8cd11a69366f44edd652c128e47e3fae030f4 Mon Sep 17 00:00:00 2001 From: Curzy Date: Wed, 13 Sep 2017 21:12:04 +0900 Subject: [PATCH] Change fontWeigts variable in `build.sh` to compatible with zsh --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 6181c658d1..ceb40b5fc2 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,8 @@ #!/usr/bin/env sh family=SourceCodePro -romanWeights='Black Bold ExtraLight Light Medium Regular Semibold' -italicWeights='BlackIt BoldIt ExtraLightIt LightIt MediumIt It SemiboldIt' +romanWeights=('Black' 'Bold' 'ExtraLight' 'Light' 'Medium' 'Regular' 'Semibold') +italicWeights=('BlackIt' 'BoldIt' 'ExtraLightIt' 'LightIt' 'MediumIt' 'It' 'SemiboldIt') # path to Python script that adds the SVG table addSVG=$(cd $(dirname "$0") && pwd -P)/addSVGtable.py