aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-10-07 13:18:08 +0200
committerGuido Guenther <agx@sigxcpu.org>2007-10-07 13:18:08 +0200
commit05e29158263faf865f90e75592b26e76b3eb8576 (patch)
tree2a5d72bfaa92bd27b8cf10d536ffc4a16f0c7760 /git-dch
parentd71da84999f57329551e8edcbfd9eb2b2bc65664 (diff)
don't fail if the commit msg starts with '--'
Diffstat (limited to 'git-dch')
-rwxr-xr-xgit-dch2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index 335465cc..64637852 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)