summaryrefslogblamecommitdiff
path: root/.tools/contributors.sh
blob: cbfadf1bc1a07210a43e26d11e1e46a2ce3caf8f (plain) (tree)























                                                                       
#!/bin/bash

source ./.tools/init.sh

clientdata_init

aptget_update
aptget_install git-core gcc ca-certificates libxml2-utils 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