diff options
author | unknown <monty@work.mysql.com> | 2001-06-12 14:12:35 +0200 |
---|---|---|
committer | unknown <monty@work.mysql.com> | 2001-06-12 14:12:35 +0200 |
commit | c4b24b52dff719f9114795a89df0d5a18614b4a9 (patch) | |
tree | a5f1c279fea2101ed23cc2fffa79f3517349aff2 /BitKeeper/triggers | |
parent | 243acd11a048a1e5d79015cc789aac42c290251e (diff) | |
parent | 3bed573d608fdc68b324600bd06fe7cd77dcbb77 (diff) | |
download | mariadb-git-c4b24b52dff719f9114795a89df0d5a18614b4a9.tar.gz |
merge
BitKeeper/etc/ignore:
auto-union
BitKeeper/etc/logging_ok:
auto-union
sql-bench/server-cfg.sh:
Auto merged
sql/sql_base.cc:
Auto merged
sql/sql_insert.cc:
Auto merged
sql/sql_table.cc:
Auto merged
Diffstat (limited to 'BitKeeper/triggers')
-rwxr-xr-x | BitKeeper/triggers/post-commit | 18 |
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 |