Remove an extraneous commit during the release process
We only need to run `git commit` after the `git merge` call if there were conflicts.
This commit is contained in:
parent
75b4f1c466
commit
3bb6c41212
1 changed files with 1 additions and 1 deletions
2
.github/update-release-branch.py
vendored
2
.github/update-release-branch.py
vendored
|
|
@ -292,7 +292,7 @@ def main():
|
|||
conflicted_files = run_git('diff', '--name-only', '--diff-filter', 'U').splitlines()
|
||||
if len(conflicted_files) > 0:
|
||||
run_git('add', '.')
|
||||
run_git('commit', '--no-edit')
|
||||
run_git('commit', '--no-edit')
|
||||
|
||||
# Migrate the package version number from a v2 version number to a v1 version number
|
||||
print(f'Setting version number to {version}')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue