summaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-08-20 18:17:31 +0200
committerGuido Guenther <agx@bogon.sigxcpu.org>2007-08-20 18:17:31 +0200
commitb2d6ee6a75ed4e1b21405e6c54a96a9494c6f5d6 (patch)
tree547e2a6a0130912416083b78e6744d991977ec3b /gbp
parentb014ad23d94771e736a6df194138b2c89219d472 (diff)
don't hardcode -i\.git -I.git as build arguments
Diffstat (limited to 'gbp')
-rw-r--r--gbp/config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gbp/config.py b/gbp/config.py
index bc19dcd9..7f030fe7 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -22,12 +22,12 @@ class GbpOptionParser(OptionParser):
@cvar config_files: list of config files we parse
@type config_files: list
"""
- defaults={ 'builder' : 'debuild',
- 'cleaner' : 'debuild clean',
+ defaults={ 'builder' : 'debuild -i\.git/ -I.git',
+ 'cleaner' : 'debuild clean',
'debian-branch' : 'master',
'upstream-branch' : 'upstream',
- 'sign-tags' : '', # empty means False
- 'keyid' : '',
+ 'sign-tags' : '', # empty means False
+ 'keyid' : '',
'posttag' : '',
'debian-tag' : 'debian/%(version)s',
'upstream-tag' : 'upstream/%(version)s',