Remove bc dependency in translators.zip build script
This commit is contained in:
parent
93c65ebabd
commit
880c0bcf59
|
@ -10,7 +10,7 @@ counter=0;
|
||||||
for file in *.js; do
|
for file in *.js; do
|
||||||
newfile=$counter.js;
|
newfile=$counter.js;
|
||||||
cp "$file" output/$newfile;
|
cp "$file" output/$newfile;
|
||||||
counter=`echo $counter + 1 | bc`;
|
counter=$(($counter+1));
|
||||||
done;
|
done;
|
||||||
|
|
||||||
cd output
|
cd output
|
||||||
|
|
Loading…
Reference in New Issue
Block a user