diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-25 18:41:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-25 18:41:46 +0300 |
commit | b7d205e5dd584dc570b916dc83617385b20d39fa (patch) | |
tree | 465c40bfa664c255676806807b6cc7b18e679e88 /.tools | |
parent | 69ca3f3bc6380e237a09c95d6c59413b8cc8a082 (diff) | |
download | clientdata-b7d205e5dd584dc570b916dc83617385b20d39fa.tar.gz clientdata-b7d205e5dd584dc570b916dc83617385b20d39fa.tar.bz2 clientdata-b7d205e5dd584dc570b916dc83617385b20d39fa.tar.xz clientdata-b7d205e5dd584dc570b916dc83617385b20d39fa.zip |
Improve error output in contributors ci script.
Diffstat (limited to '.tools')
-rwxr-xr-x | .tools/contributors.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.tools/contributors.sh b/.tools/contributors.sh index dc63b91a..0a9f1a89 100755 --- a/.tools/contributors.sh +++ b/.tools/contributors.sh @@ -10,18 +10,14 @@ gitclone https://gitlab.com/evol/evol-tools.git tools cd tools/contrib_xsl -pwd make about-server check_error $? cd ../../clientdata -pwd -git diff export RES=$(git diff) if [[ -n "${RES}" ]]; then echo "Contributors list not updated" - echo "Diff:" - echo ${RES} + git diff exit 1 fi |