aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2006-09-28 14:14:36 +0200
committerGuido Guenther <agx@bogon.sigxcpu.org>2006-09-28 14:14:36 +0200
commitc6074bbc5c47d87d249f5cedfce4a623a1e43157 (patch)
treed07adf528593bc9efbcd1175adaa444956a42e25
parenta14bf72962bcd06915a3876824873ee719b6700b (diff)
git-buildpacakge: add --git-verbose
-rw-r--r--debian/changelog7
-rwxr-xr-xgit-buildpackage5
2 files changed, 12 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index a2cd2513..5f1af9b1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+git-buildpackage (0.2.2) git-buildpackage; urgency=low
+
+ * UNRELEASED
+ * git-buildpackage: add --git-verbose option
+
+ -- Guido Guenther <agx@sigxcpu.org> Thu, 28 Sep 2006 14:13:46 +0200
+
git-buildpackage (0.2.1) git-buildpackage; urgency=low
* git-import-orig: don't try import new upstream versions when there
diff --git a/git-buildpackage b/git-buildpackage
index f59b6c12..9e841383 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -46,8 +46,13 @@ def main(argv):
help="build with uncommited changes in the source tree")
parser.add_option("--git-builder", dest="build_cmd", default=build_cmd,
help="command to build the package e.g. default is 'debuild'")
+ parser.add_option("--git-verbose", action="store_true", dest="verbose", default=False,
+ help="verbose command execution")
(options, args) = parser.parse_args(args)
+ if options.verbose:
+ Command.verbose = True
+
try:
if not options.ignore_new:
Command(options.build_cmd,['clean'])()