summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-22 19:05:58 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-22 19:05:58 +0100
commitd09a5b0c1b51db9823f580d7ec4e0088529229be (patch)
tree0981a7bb59d29c55617065d9d2e605a458bfd185
parent591eaa429fd65f3a9696db391394ea851620d013 (diff)
downloadunperish-d09a5b0c1b51db9823f580d7ec4e0088529229be.tar.gz
When constructing version number for targeted build, prefix local part with ~
Thanks to Peter Palfrader for suggesting this.
-rwxr-xr-xunperish2
1 files changed, 1 insertions, 1 deletions
diff --git a/unperish b/unperish
index 2a73c34..bdd7583 100755
--- a/unperish
+++ b/unperish
@@ -352,7 +352,7 @@ class Unperish(cliapp.Application):
def add_debian_changelog_entry(self, target):
self.runcmd(['dch',
'--force-distribution',
- '--local', target,
+ '--local', '~' + target,
'--distribution', target,
'--preserve',
'Build for %s.' % target],