ソースを参照

[ttfautohint-build.sh] removed unnecessary $ on arithmetic variables

Chris Simpkins 7 年 前
コミット
f2ada74287
1 ファイル変更3 行追加3 行削除
  1. 3 3
      tools/scripts/install/ttfautohint-build.sh

+ 3 - 3
tools/scripts/install/ttfautohint-build.sh

@@ -82,21 +82,21 @@ count=0
 for i in $FREETYPE_PATCHES
 do
   curl -o ft-patch-$count.diff "$i"
-  count=$(($count + 1))
+  count=$((count + 1))
 done
 
 count=0
 for i in $HARFBUZZ_PATCHES
 do
   curl -o hb-patch-$count.diff "$i"
-  count=$(($count + 1))
+  count=$((count + 1))
 done
 
 count=0
 for i in $TTFAUTOHINT_PATCHES
 do
   curl -o ta-patch-$count.diff "$i"
-  count=$(($count + 1))
+  count=$((count + 1))
 done