[Libreoffice-commits] buildbot.git: bin/tinbuild_internals.sh

Stephan Bergmann sbergman at redhat.com
Thu Jan 7 00:13:29 PST 2016


 bin/tinbuild_internals.sh |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit cc3439ee0c140b57fed7d0413417a3d0443c61d6
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Jan 7 09:12:55 2016 +0100

    Filter out special gerrit at gerrit.libreoffice.org when sending blame mail

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 at 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 at gerrit.libreoffice.org and there is no mailbox
+        # behind it"
 }
 
 rotate_logs()


More information about the Libreoffice-commits mailing list