summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-07 09:12:55 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-07 09:12:55 +0100
commitcc3439ee0c140b57fed7d0413417a3d0443c61d6 (patch)
tree9f7f4fd31ececdf603ca161db7ae2a8f0791a6d7 /bin
parenta613980bfc9afba4b4846263a1211664b22da22e (diff)
Filter out special gerrit@gerrit.libreoffice.org when sending blame mail
Diffstat (limited to 'bin')
-rw-r--r--bin/tinbuild_internals.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/tinbuild_internals.sh b/bin/tinbuild_internals.sh
index d839573..c136555 100644
--- a/bin/tinbuild_internals.sh
+++ b/bin/tinbuild_internals.sh
@@ -410,7 +410,12 @@ collect_current_heads()
get_committers()
{
echo "get_committers: $(get_commits_since_last_good people)" 1>&2
- get_commits_since_last_good people | sort | uniq | tr '\n' ','
+ get_commits_since_last_good people | sort | uniq | grep -v '^gerrit@gerrit\.libreoffice\.org$' | tr '\n' ','
+ # shm_get says: "when a commit to a submodule is pushed via gerrit,
+ # gerrit automatically generate the necessary commit on core.git to
+ # reflect the submodule change.. that commit is done with gerrit's
+ # credential.. gerrit@gerrit.libreoffice.org and there is no mailbox
+ # behind it"
}
rotate_logs()