www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit af5f526ad10adf6a94125a43d973d6774d795d52
parent 531c8c3e6680f88fe4755ec5fdf1f7ef6275623f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 27 Oct 2011 02:36:41 -0400

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

Diffstat:
Dbuild_translators_zip | 20--------------------
1 file changed, 0 insertions(+), 20 deletions(-)

diff --git a/build_translators_zip b/build_translators_zip @@ -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 ..