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