summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-08-11 21:46:59 +0300
committerLars Wirzenius <liw@liw.fi>2018-08-11 21:46:59 +0300
commit5fb4ad82e14f56af0d18a1963914d425d0352eb5 (patch)
tree6fa855248347759b2c524041027f343da238abb2
parent49ebd86b4adfa64673740fc96b36b3ccff164a91 (diff)
downloadick-helpers-5fb4ad82e14f56af0d18a1963914d425d0352eb5.tar.gz
Fix: always include source in .dsc
We create version 1.2-1.stretch when building 1.2-1 for stretch. dpkg-genchanges doesn't include source unless version ends in -1.
-rw-r--r--ick_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ick_helpers.py b/ick_helpers.py
index da71e4f..7d45cfd 100644
--- a/ick_helpers.py
+++ b/ick_helpers.py
@@ -220,7 +220,7 @@ class DebianReleaseBuilder:
self.ex.run('dch', '--no-conf', '-r', '', env=env)
def create_dsc(self):
- self.ex.run('dpkg-buildpackage', '-S', '--no-sign')
+ self.ex.run('dpkg-buildpackage', '-S', '--no-sign', '-sa')
def build_deb(self):
self.ex.run('dpkg-buildpackage', '-b', '--no-sign')