summaryrefslogblamecommitdiff
path: root/.tools/contributors.sh
blob: 8b85eeeaea173a1b476580f0435c9db606fe3a92 (plain) (tree)
1
2
3
4
5
6
7
8
9






                       

                                     















                                                             
#!/bin/bash

source ./.tools/init.sh

clientdata_init

aptget_update
aptget_install git-core make xsltproc

rm -rf tools
gitclone https://git.themanaworld.org/evolved tools.git tools

cd tools/contrib_xsl

make about-server
check_error $?

cd ../../clientdata

export RES=$(git diff)
if [[ -n "${RES}" ]]; then
    echo "Contributors list not updated"
    git diff
    exit 1
fi