summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-04-18 14:03:34 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-04-18 14:03:34 +0200
commit32c2f9b24089ab21b502ed3224f94b5428694808 (patch)
treed3c2da2c0a3d8c1041d527b35c2f110bd1f58d02
parent23a6c91854d20c08b9d73aa09c9af696f9d7eaf3 (diff)
downloadqutebrowser-32c2f9b24089ab21b502ed3224f94b5428694808.tar.gz
qutebrowser-32c2f9b24089ab21b502ed3224f94b5428694808.zip
build_release: Print version when asking for confirmation
-rwxr-xr-xscripts/dev/build_release.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 95ce66473..c31c3cee2 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -481,10 +481,9 @@ def main():
upload_to_pypi = True
if args.upload:
- utils.print_title("Press enter to release...")
- input()
-
version_tag = "v" + qutebrowser.__version__
+ utils.print_title("Press enter to release {}...".format(version_tag))
+ input()
github_upload(artifacts, version_tag)
if upload_to_pypi: