From ad8b6888f2cc5f8ede7d1e1cbd8bab917a3165fd Mon Sep 17 00:00:00 2001 From: MehVahdJukaar Date: Sun, 4 Aug 2024 02:23:49 +0200 Subject: [PATCH] improved push_tag --- push_tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push_tag.py b/push_tag.py index c06eb00..689e331 100644 --- a/push_tag.py +++ b/push_tag.py @@ -23,7 +23,7 @@ def main(): for line in lines: changelog = changelog + '-m "'+line+'" ' - tag_success = os.system('git tag -a release-{}-{}-{}b {}'.format(mc_version, version, build_number, changelog)) + tag_success = os.system('git tag -a release-{}-{}-{} {}'.format(mc_version, version, build_number, changelog)) if tag_success != 0: print('Failed to create tag')