From 1bf90a6e21573c9c41ecf21329cf71d34e2eaee8 Mon Sep 17 00:00:00 2001 From: winlin Date: Sun, 19 Jan 2020 18:25:29 +0800 Subject: [PATCH] Ignore noreply user. --- trunk/scripts/new_authors.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/scripts/new_authors.sh b/trunk/scripts/new_authors.sh index f0a94123c..7bc0dadd0 100755 --- a/trunk/scripts/new_authors.sh +++ b/trunk/scripts/new_authors.sh @@ -11,6 +11,7 @@ for author in $authors; do echo $author| grep 'winterserver' >/dev/null 2>&1 && continue; echo $author| grep 'wenjie.zhao' >/dev/null 2>&1 && continue; echo $author| grep 'zhaowenjie' >/dev/null 2>&1 && continue; + echo $author| grep 'noreply' >/dev/null 2>&1 && continue; grep $author $AFILE 1>/dev/null 2>/dev/null && continue;