diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-16 03:28:11 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-16 03:28:11 +0000 |
commit | fccadcdc23cc814e14c852ef02982fafeb1fec14 (patch) | |
tree | 6bfcb035f6a600d20fded2471267cde3122a697a /BitKeeper/triggers | |
parent | bd2e59526e035373d4e44084e1b19cdfd2622d6d (diff) |
Uncomment the sanity check that prevented the notifications from going out from non-bkbits pushes.
BKrev: 40075a4bKb5jVIiTypUFlKGVo8BQXg
Diffstat (limited to 'BitKeeper/triggers')
-rw-r--r-- | BitKeeper/triggers/post-outgoing.ciabot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BitKeeper/triggers/post-outgoing.ciabot b/BitKeeper/triggers/post-outgoing.ciabot index 0a424ffb18..3523e937fa 100644 --- a/BitKeeper/triggers/post-outgoing.ciabot +++ b/BitKeeper/triggers/post-outgoing.ciabot @@ -10,9 +10,9 @@ check_sanity () { # is on bkbits.net and b) we are the client. # Is parent a public BitKeeper repository at bkbits.net? -# if !(echo $BKD_HOST|grep -q bitkeeper.com); then -# return 1 -# fi + if !(echo $BKD_HOST|grep -q bitkeeper.com); then + return 1 + fi if [ $BK_SIDE != client ]; then return 1 |