Fix typo in release script

This commit is contained in:
ZyX 2015-02-19 02:56:05 +03:00
parent 389e01ffd5
commit d5d4e956fe
1 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,8 @@ def merge(version_string, rev, **kwargs):
'--strategy', 'recursive', '--strategy', 'recursive',
'--strategy-option', 'theirs', '--strategy-option', 'theirs',
'--commit', '--commit',
'-m', 'Merge branch \'{0}\' into {1}'.format(temp_branch_name, rev)]) '-m', 'Merge branch \'{0}\' into {1}'.format(temp_branch_name, rev),
temp_branch_name])
check_call(['git', 'branch', '-d', temp_branch_name]) check_call(['git', 'branch', '-d', temp_branch_name])
rev = check_output(['git', 'rev-parse', 'HEAD']).strip() rev = check_output(['git', 'rev-parse', 'HEAD']).strip()