diff options
author | unknown <jperkin/jonathan@chorlton.adsl.perkin.org.uk> | 2007-12-04 12:57:16 +0000 |
---|---|---|
committer | unknown <jperkin/jonathan@chorlton.adsl.perkin.org.uk> | 2007-12-04 12:57:16 +0000 |
commit | 6b29db4fe8406903211aca9f53e389155e5f3710 (patch) | |
tree | e3e683da1c110650c2a19f4ca75fe1bb2330ebc0 /BitKeeper | |
parent | f3514dc3c42b2fc88c336efdd4b75c90b2a08f51 (diff) | |
download | mariadb-git-6b29db4fe8406903211aca9f53e389155e5f3710.tar.gz |
post-commit:
Use $BK_USER, if set, in preference to $USER
BitKeeper/triggers/post-commit:
Use $BK_USER, if set, in preference to $USER
Diffstat (limited to 'BitKeeper')
-rwxr-xr-x | BitKeeper/triggers/post-commit | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/BitKeeper/triggers/post-commit b/BitKeeper/triggers/post-commit index 865d7cdac92..58e8a3996cb 100755 --- a/BitKeeper/triggers/post-commit +++ b/BitKeeper/triggers/post-commit @@ -1,7 +1,14 @@ #!/bin/sh #shift -FROM=$USER@mysql.com +if [ -n "$BK_USER" ] +then + COMMITTER=$BK_USER + FROM=$BK_USER@mysql.com +else + COMMITTER=$USER + FROM=$USER@mysql.com +fi COMMITS=commits@lists.mysql.com DOCS=docs-commit@mysql.com LIMIT=10000 @@ -88,8 +95,8 @@ Subject: bk commit into $VERSION tree ($CHANGESET)$BS X-CSetKey: <$CSETKEY> $BH Below is the list of changes that have just been committed into a local -$VERSION repository of $USER. When $USER does a push these changes will -be propagated to the main repository and, within 24 hours after the +$VERSION repository of $COMMITTER. When $COMMITTER does a push these changes +will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html |