Commit 68b6a6b9 authored by unknown's avatar unknown

post-commit:

  Use $BK_USER, if set, in preference to $USER


BitKeeper/triggers/post-commit:
  Use $BK_USER, if set, in preference to $USER
parent 4e3f57b9
#!/bin/sh #!/bin/sh
#shift #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 COMMITS=commits@lists.mysql.com
DOCS=docs-commit@mysql.com DOCS=docs-commit@mysql.com
LIMIT=10000 LIMIT=10000
...@@ -88,8 +95,8 @@ Subject: bk commit into $VERSION tree ($CHANGESET)$BS ...@@ -88,8 +95,8 @@ Subject: bk commit into $VERSION tree ($CHANGESET)$BS
X-CSetKey: <$CSETKEY> X-CSetKey: <$CSETKEY>
$BH $BH
Below is the list of changes that have just been committed into a local 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 $VERSION repository of $COMMITTER. When $COMMITTER does a push these changes
be propagated to the main repository and, within 24 hours after the will be propagated to the main repository and, within 24 hours after the
push, to the public repository. push, to the public repository.
For information on how to access the public repository For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment