From a14bf72962bcd06915a3876824873ee719b6700b Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Wed, 27 Sep 2006 12:19:09 +0200 Subject: git-buildpackage: allow for --help --- git-buildpackage | 3 +++ 1 file changed, 3 insertions(+) diff --git a/git-buildpackage b/git-buildpackage index b4027aff..f59b6c12 100755 --- a/git-buildpackage +++ b/git-buildpackage @@ -36,6 +36,9 @@ def main(argv): args = [ arg for arg in argv[1:] if arg.find('--git-') == 0 ] dpkg_args = [ arg for arg in argv[1:] if arg.find('--git-') == -1 ] + if "--help" in dpkg_args: + args.append('--help') + parser=optparse.OptionParser() parser.add_option("--git-ignore-new", action="store_true", dest="ignore_new", default=False, help="build with incommited changes in the source tree") -- cgit v1.2.3