From 8c52455eb24df93e30e1ea4e0000f7d5e8859e8d Mon Sep 17 00:00:00 2001 From: Saurabh Date: Fri, 29 Sep 2017 16:32:25 +0530 Subject: [PATCH] [fix] old version branhc naming --- bench/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/release.py b/bench/release.py index af2bcd53..19671f6a 100755 --- a/bench/release.py +++ b/bench/release.py @@ -305,7 +305,7 @@ def push_branch_for_old_major_version(bench_path, bump_type, app, repo_path, fro return current_version = get_current_version(repo_path) - old_major_version_branch = "v{major}_x_x".format(major=current_version.split('.')[0]) + old_major_version_branch = "v{major}.x.x".format(major=current_version.split('.')[0]) click.confirm('Do you want to push {branch}?'.format(branch=old_major_version_branch), abort=True)