diff options
author | Chris Larson <clarson@kergoth.com> | 2004-02-04 02:59:14 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-02-04 02:59:14 +0000 |
commit | 1b81e046979af0b2dd33e55140d34586ad788399 (patch) | |
tree | a9d49c353410d6237b98edfccce71b0f9a6909d4 | |
parent | 08a25432ff0ad1248127c5475e51e78f139b7f7f (diff) |
BUGFIX: Kill trailing ns in CIA notifications.. apparently :C:\n consumes the \, but :C: \n does not.
BKrev: 40206002RN6zOvVKQA80bDxpNCZSVw
-rw-r--r-- | BitKeeper/triggers/ciabot_bk.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BitKeeper/triggers/ciabot_bk.sh b/BitKeeper/triggers/ciabot_bk.sh index 72e228ddc2..cd2892a5d1 100644 --- a/BitKeeper/triggers/ciabot_bk.sh +++ b/BitKeeper/triggers/ciabot_bk.sh @@ -56,7 +56,7 @@ Subject: DeliverXML <files>$files</files> EOF echo " <log>" -bk changes -r"$REV" -d'$if(:C:){$each(:C:){:C:\\n}}' | sed 's/\&/\&\;/g;s/</\<\;/g;s/>/\>\;/g' +bk changes -r"$REV" -d'$if(:C:){$each(:C:){:C: \\n}}' | sed -e 's/\&/\&\;/g;s/</\<\;/g;s/>/\>\;/g;' echo " </log>" cat <<EOF </commit> |