aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2006-12-03 22:30:56 +0100
committerGuido Guenther <agx@bogon.sigxcpu.org>2006-12-03 22:30:56 +0100
commit64acc5b038f9011dfa8afd74b633c12689a06945 (patch)
tree8e6c6ddbc11aeeffb1a012b6c07da8d2030b6e72
parent286ee3661d590ed3901b5c8c1200bafd943c14a6 (diff)
fix typos in "git-buildpackage --help"debian/0.2.13
-rw-r--r--debian/changelog6
-rwxr-xr-xgit-buildpackage8
2 files changed, 10 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index 14e96c8d..13f91399 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+git-buildpackage (0.2.13) experimental; urgency=low
+
+ * fix typos in 'git-buildpackage -v'
+
+ -- Guido Guenther <agx@sigxcpu.org> Sun, 3 Dec 2006 22:27:11 +0100
+
git-buildpackage (0.2.12) experimental; urgency=low
* upload to experimental (Closes: #389710)
diff --git a/git-buildpackage b/git-buildpackage
index a8870104..9cf16d93 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -54,14 +54,14 @@ def main(argv):
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")
- parser.add_option("--git-tag", action="store_true", dest="tag", default=False,
help="build with uncommited changes in the source tree")
+ parser.add_option("--git-tag", action="store_true", dest="tag", default=False,
+ help="tag after a successful build")
parser.add_option("--git-builder", dest="build_cmd", default=build_cmd,
- help="command to build the package e.g. default is 'debuild'")
+ help="command to build the package with, default is 'debuild'")
parser.add_option("--git-verbose", action="store_true", dest="verbose", default=False,
help="verbose command execution")
- parser.add_option("--upstream-branch", dest="upstream_branch", default='upstream',
+ parser.add_option("--git-upstream-branch", dest="upstream_branch", default='upstream',
help="name of the upstream branch, default is 'upstream'")
(options, args) = parser.parse_args(args)