Remove translators zip build script, since it's no longer used

This commit is contained in:
Dan Stillman 2011-10-27 02:36:41 -04:00
parent 531c8c3e66
commit af5f526ad1

View File

@ -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 ..