diff --git a/.buildkite/linux/check_contributors b/.buildkite/linux/check_contributors index 7604e3d51..925b36575 100755 --- a/.buildkite/linux/check_contributors +++ b/.buildkite/linux/check_contributors @@ -7,11 +7,18 @@ antispam=", at the domain " headAuthor=$(git log -1 --pretty=format:'%ae') authorAt=$(echo "$headAuthor" | sed "s/@/$antispam/") if git log --pretty=format:'%ae' CONTRIBUTORS | grep -i "$headAuthor" > /dev/null; then - echo "Author $authorAt found in CONTRIBUTORS" + echo "Author found in CONTRIBUTORS" else echo "All contributors:" git log --pretty=format:' - %ae' CONTRIBUTORS |sort |uniq |sort -f | sed "s/@/$antispam/" echo "Author $authorAt NOT found in list" + echo + cat <