Remove bc dependency in translators.zip build script
This commit is contained in:
parent
9c999bff05
commit
14c8ce10cb
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue