aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-06-14 11:55:17 +0200
committerGuido Günther <agx@sigxcpu.org>2014-06-14 12:00:47 +0200
commit0b1fc0d602d75da30748bbc979fed48aab805503 (patch)
tree4e4f23342d2de58790995bf58777c56e5222dbe1
parent655a6f0528afcebe1b4493abe865ee568c505bbf (diff)
buildpackage: Also print tag name when tagging the Debian release
Based on a patch by Kamal Mostafa
-rwxr-xr-xgbp/scripts/buildpackage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/scripts/buildpackage.py b/gbp/scripts/buildpackage.py
index 54e66bd2..0ef6e9c7 100755
--- a/gbp/scripts/buildpackage.py
+++ b/gbp/scripts/buildpackage.py
@@ -597,8 +597,8 @@ def main(argv):
extra_env={'GBP_CHANGES_FILE': changes,
'GBP_BUILD_DIR': build_dir})()
if options.tag or options.tag_only:
- gbp.log.info("Tagging %s" % source.changelog.version)
tag = repo.version_to_tag(options.debian_tag, source.changelog.version)
+ gbp.log.info("Tagging %s as %s" % (source.changelog.version, tag))
if options.retag and repo.has_tag(tag):
repo.delete_tag(tag)
repo.create_tag(name=tag,