diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-12 18:47:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-12 18:47:33 -0300 |
commit | 6a343e058a776b1050773c53da583ac044df6f0f (patch) | |
tree | b469ef551024b75aa29a1d8f3365a3c0969bb0da /update | |
parent | 59bc766bbbaba86d0424411f51e62778e5d37fef (diff) | |
download | messworld-tools-6a343e058a776b1050773c53da583ac044df6f0f.tar.gz messworld-tools-6a343e058a776b1050773c53da583ac044df6f0f.tar.bz2 messworld-tools-6a343e058a776b1050773c53da583ac044df6f0f.tar.xz messworld-tools-6a343e058a776b1050773c53da583ac044df6f0f.zip |
Add CI Utils. Add Updater. And add my analysis tool (wikigen)
Diffstat (limited to 'update')
-rwxr-xr-x | update/pseudo_update.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/update/pseudo_update.sh b/update/pseudo_update.sh new file mode 100755 index 0000000..9893b88 --- /dev/null +++ b/update/pseudo_update.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash + +# Copyright (C) 2010-2012 TMW2 Online +# Author: Andrei Karas (4144) + +dir=`pwd` + +previous=`cat commit.txt` +rm upload/Extra.zip + +cd ../../client-data +head=`git log --pretty=oneline -n 1 | awk '{print $1}'` +u1=`echo ${previous} | cut -c 1-7` +u2=`echo ${head} | cut -c 1-7` +git diff --name-status ${previous} HEAD | awk '/^(A|M)\t/ {print $2}; /^(R...)\t/ {print $3}' | \ +grep -e "[.]\(xml\|png\|tmx\|ogg\|txt\|po\|tsx\|md\)" | sort | uniq | \ +xargs zip -X -9 -r ../tools/update/upload/Extra.zip + +cd $dir/upload + +sum=`adler32 Extra.zip | awk '{print $2}'` +echo "Update ID: ${u1}..${u2}" +echo "Checksum: ${sum}" + +echo "Extra.zip ${sum}" >>resources2.txt +cp ../files/xml_header.txt resources.xml +echo " <update type=\"data\" file=\"Extra.zip\" hash=\"${sum}\" />" >> resources.xml +#cat ../files/xml_footer.txt >>resources.xml +#cat ../files/xml_mods.txt >>resources.xml +echo '</updates>' >>resources.xml + |