diff options
Diffstat (limited to '.tools/testxml.sh')
-rwxr-xr-x | .tools/testxml.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.tools/testxml.sh b/.tools/testxml.sh index a0dc16b3..458d7b85 100755 --- a/.tools/testxml.sh +++ b/.tools/testxml.sh @@ -5,7 +5,8 @@ source ./.tools/init.sh clientdata_init aptget_update -aptget_install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python python-pyvorbis python-ogg python-pil +aptget_install git-core libxml2-utils python python-pil python-pyvorbis + rm -rf tools gitclone https://git.themanaworld.org/evolved tools.git tools @@ -16,7 +17,7 @@ check_error $? export RES=$(cat errors.txt) if [[ -n "${RES}" ]]; then echo "xml check failed" >../../../clientdata/shared/error.log - echo ${RES} >>../../../clientdata/shared/error.log + cat errors.txt >>../../../clientdata/shared/error.log cat ../../../clientdata/shared/error.log exit 1 fi |