From 209c499db2e003e5c7506ca99138f23ea2fad999 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 6 Apr 2022 06:33:19 +0200 Subject: Merging upstream version 1.25.0. Signed-off-by: Daniel Baumann --- release.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'release.py') diff --git a/release.py b/release.py index 3f18f03..62daa80 100755 --- a/release.py +++ b/release.py @@ -72,7 +72,7 @@ def upload_distribution_files(): def push_to_github(): - run_step('git', 'push', 'origin', 'master') + run_step('git', 'push', 'origin', 'main') def push_tags_to_github(): @@ -90,7 +90,6 @@ if __name__ == '__main__': subprocess.check_output = lambda x: x ver = version('mycli/__init__.py') - print('Releasing Version:', ver) parser = OptionParser() parser.add_option( @@ -107,6 +106,8 @@ if __name__ == '__main__': CONFIRM_STEPS = popts.confirm_steps DRY_RUN = popts.dry_run + print('Releasing Version:', ver) + if not click.confirm('Are you sure?', default=False): sys.exit(1) -- cgit v1.2.3