From 05e29158263faf865f90e75592b26e76b3eb8576 Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Sun, 7 Oct 2007 13:18:08 +0200 Subject: don't fail if the commit msg starts with '--' --- git-dch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-dch') diff --git a/git-dch b/git-dch index 335465c..6463785 100755 --- a/git-dch +++ b/git-dch @@ -59,7 +59,7 @@ def system(cmd): def add_changelog_entry(msg, author): - cmd = 'DEBFULLNAME="%s" dch "%s"' % (author, msg.replace('"','\"')) + cmd = 'DEBFULLNAME="%s" dch --append -- "%s"' % (author, msg.replace('"','\"')) system(cmd) -- cgit v1.2.3