Remove translators zip build script, since it's no longer used
This commit is contained in:
parent
531c8c3e66
commit
af5f526ad1
|
@ -1,20 +0,0 @@
|
|||
#!/bin/bash
|
||||
if [ -f translators.zip ]; then
|
||||
rm translators.zip
|
||||
fi
|
||||
if [ ! -d output ]; then
|
||||
mkdir output;
|
||||
fi
|
||||
|
||||
counter=0;
|
||||
for file in *.js; do
|
||||
newfile=$counter.js;
|
||||
cp "$file" output/$newfile;
|
||||
counter=$(($counter+1));
|
||||
done;
|
||||
|
||||
cd output
|
||||
zip ../translators.zip *
|
||||
cd ..
|
||||
rm -rf output
|
||||
mv translators.zip ..
|
Loading…
Reference in New Issue
Block a user