blob: 4f3b4f1060bef3db9a3ee236560680c8f61ba9e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
source ./.tools/init.sh
clientdata_init
aptget_update
aptget_install git-core make xsltproc
rm -rf tools
gitclone https://git.themanaworld.org/ml 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
|