www

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

commit 14c8ce10cb05dff5f44a9602ee543b5f0eb734f0
parent 9c999bff05a4a32f00c0e7bea4123abca61d6fc9
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon, 15 Sep 2008 06:25:44 +0000

Remove bc dependency in translators.zip build script


Diffstat:
Mtranslators/build_zip | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/translators/build_zip b/translators/build_zip @@ -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 .. -\ No newline at end of file +mv translators.zip ..