aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-04-23 18:16:36 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-04-23 18:16:36 +0200
commit8df585e228eb1abe9b7c4ef6300d110121f6c474 (patch)
tree4c4d2c8224ac97dfa2c19281ce8302f87b8a7f6c /git-dch
parentbfbc63fd8d4261abdfeeb3da7a7e2bdf1990859d (diff)
use --no-auto-nmu
Otherwise GIT_AUTHORS not in debian/control cause a NMU version number
Diffstat (limited to 'git-dch')
-rwxr-xr-xgit-dch4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-dch b/git-dch
index 886b1f40..c4490e77 100755
--- a/git-dch
+++ b/git-dch
@@ -41,13 +41,13 @@ def system(cmd):
def add_changelog_entry(msg, author):
"add aa single changelog entry"
- cmd = """DEBFULLNAME="%s" dch --append -- "%s" """ % (author, msg.replace('"','\\\"'))
+ cmd = """DEBFULLNAME="%s" dch --no-auto-nmu --append -- "%s" """ % (author, msg.replace('"','\\\"'))
system(cmd)
def add_changelog_section(msg, distribution):
"add a new changelog section"
- cmd = "dch --distribution=%s -i %s" % (distribution, msg)
+ cmd = "dch --no-auto-nmu --distribution=%s -i %s" % (distribution, msg)
system(cmd)
def fixup_trailer():