summaryrefslogtreecommitdiff
path: root/BitKeeper/triggers
diff options
context:
space:
mode:
authormonty@work.mysql.com <>2001-06-12 14:12:35 +0200
committermonty@work.mysql.com <>2001-06-12 14:12:35 +0200
commit0652902ab5f8e80b274b26ba78e6c3ce70bb22ce (patch)
treea5f1c279fea2101ed23cc2fffa79f3517349aff2 /BitKeeper/triggers
parent23c049e3e3c93be46901870393f6b1944dff8f76 (diff)
parenta2e9e16fdd0e72143646f434d1b60d77c255b636 (diff)
downloadmariadb-git-0652902ab5f8e80b274b26ba78e6c3ce70bb22ce.tar.gz
merge
Diffstat (limited to 'BitKeeper/triggers')
-rwxr-xr-xBitKeeper/triggers/post-commit18
1 files changed, 18 insertions, 0 deletions
diff --git a/BitKeeper/triggers/post-commit b/BitKeeper/triggers/post-commit
index 2e2c9b50970..6639366f622 100755
--- a/BitKeeper/triggers/post-commit
+++ b/BitKeeper/triggers/post-commit
@@ -3,6 +3,7 @@
#shift
TO=dev-public@mysql.com
FROM=$USER@mysql.com
+INTERNALS=internals@lists.mysql.com
LIMIT=10000
if [ "$REAL_EMAIL" = "" ]
@@ -28,6 +29,23 @@ EOF
bk changes -v -r+
bk cset -r+ -d
) | head -n $LIMIT | /usr/sbin/sendmail -t
+ echo "Notifying internals list at $INTERNALS"
+ (
+ cat <<EOF
+List-ID: <bk.mysql>
+From: $FROM
+To: $INTERNALS
+Subject: bk commit into 3.23 tree
+
+Below is the list of changes that have just been pushed into main
+3.23. repository. For information on how to access the repository
+see http://www.mysql.com/doc/I/n/Installing_source_tree.html
+>>>>>>> BitKeeper/tmp/post-commit_sasha@1.8.1.3
+
+EOF
+ bk changes -v -r+
+ bk cset -r+ -d
+ ) | head -n $LIMIT | /usr/sbin/sendmail -t
else
echo "commit failed because '$BK_STATUS', sorry life is hard..."
fi