소스 검색

[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