aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-10-22 15:59:13 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-10-22 15:59:13 +0200
commit8b15994277805a3e3d6b1058f07113aef3c2e1ab (patch)
treede1ec08748586d48ad4cd629496e38870e36bb3b /gbp
parentb6c407ba255d90eab6b849d84a6d4119c1a15b44 (diff)
allow for another config file $REPO/debian/gbp.conf
the advantage over $REPO/.gbp.conf is that one can keep everything packaging related below debian/. Thanks to Sean Finney. Closes: #502253
Diffstat (limited to 'gbp')
-rw-r--r--gbp/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gbp/config.py b/gbp/config.py
index c915c99c..2235f345 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -48,6 +48,7 @@ class GbpOptionParser(OptionParser):
config_files = [ '/etc/git-buildpackage/gbp.conf',
os.path.expanduser('~/.gbp.conf'),
'.gbp.conf',
+ 'debian/gbp.conf',
'.git/gbp.conf' ]
def __parse_config_files(self):