#!/usr/bin/env bash # Copyright (C) 2010-2012 TMW2 Online # Author: Andrei Karas (4144) dir=`pwd` previous=`cat commit.txt` rm files/xml_mods.txt cd ../../client-data/mods FILES=`ls` for file in $FILES; do cd $file find . -type f | xargs zip -9 -r ../../../tools/update/files/mod-$file.zip cd $dir/files sum=`adler32 mod-$file.zip | awk '{print $2}'` echo " " >> xml_mods.txt cp xml_header.txt resources.xml cat xml_footer.txt >>resources.xml cat xml_mods.txt >>resources.xml echo '' >>resources.xml cp mod-$file.zip ../upload/ cp resources2.txt ../upload/ cp resources.xml ../upload/ done