summaryrefslogtreecommitdiff
path: root/.tools/contributors.sh
blob: 313cf9051d150a33663511c7a5df789576eeeadd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

source ./.tools/init.sh

clientdata_init

aptget_update
aptget_install git-core gcc ca-certificates libxml2-utils make
gitclone https://gitlab.com/evol/evol-tools.git tools

cd tools/contrib_xsl

make about-server
cd ../../clientdata

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