Skip to content

Commit

Permalink
Fix bug in branch name for acme_cime_merge
Browse files Browse the repository at this point in the history
[BFB]
  • Loading branch information
jgfouca committed Oct 25, 2017
1 parent 7b49896 commit c670433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/acme_cime_mgmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def acme_cime_merge(resume):

else:
old_merge_tag, new_merge_tag = get_merge_tag(expected_num=2)
pr_branch = get_branch_from_tag(new_merge_tag)
pr_branch = "{}-pr".format(get_branch_from_tag(new_merge_tag))

try:
run_cmd_no_fail("git push origin {}".format(pr_branch))
Expand Down

0 comments on commit c670433

Please sign in to comment.