diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-27 19:21:35 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-27 19:21:35 +0000 |
commit | 2b765a3b742074c23fd83e8be726d80f9e8d2f40 (patch) | |
tree | 65f4e3a719b24a1549a321186f016d156dcccbee /BitKeeper | |
parent | 04712c0574d4ba4a885475f2411348d1b1724681 (diff) |
Correct CIA trigger to operate properly on all bk versions again.
BKrev: 40b63fbfJIsMcqiEG5hCwSiwblAmdg
Diffstat (limited to 'BitKeeper')
-rw-r--r-- | BitKeeper/triggers/post-outgoing.ciabot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BitKeeper/triggers/post-outgoing.ciabot b/BitKeeper/triggers/post-outgoing.ciabot index 3fead58232..68a1364b83 100644 --- a/BitKeeper/triggers/post-outgoing.ciabot +++ b/BitKeeper/triggers/post-outgoing.ciabot @@ -42,9 +42,9 @@ check_sanity () { # Check sanity - do we need to send anything? check_sanity || exit 0 -if (grep -q ':ChangeSet:' $BK_CSETLIST); then +if (grep -q 'ChangeSet' $BK_CSETLIST); then # new, correct csets-out format - nums = `bk changes -d:REV: - < $BK_CSETLIST` + nums=`bk changes -d:REV: - < $BK_CSETLIST` else # Convert numbers from the cset list into something useful |