summaryrefslogblamecommitdiff
path: root/update/addmods.sh
blob: 3a4e036121b4e6a9547f09643b785ff96192f9a4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                   













                                      
                         




                      
                                                                                      








                                                                                                                
#!/usr/bin/env bash

# Copyright (C) 2010-2012  Evol Online
# Author: Andrei Karas (4144)

dir=`pwd`

rm adler32
gcc -lz adler32.c -o adler32

mkdir files
mkdir upload

previous=`cat commit.txt`

cd ../../client-data/mods

FILES=`ls`

for file in $FILES; do
    cd $file
    find . -type f | xargs zip -9 -r ../../../../evol-tools/update/files/mod-$file.zip
    cd $dir/files
    sum=`../adler32 1 mod-$file.zip`
    echo "    <update type=\"data\" group=\"$file\" file=\"mod-$file.zip\" hash=\"${sum}\" />" >> xml_header.txt
    cp xml_header.txt resources.xml
    cat xml_footer.txt >>resources.xml
    cp mod-$file.zip ../upload/
    cp resources2.txt ../upload/
    cp resources.xml ../upload/
done