Fix linting error
This commit is contained in:
parent
1b2a85436c
commit
453edb42b4
1 changed files with 2 additions and 1 deletions
|
@ -192,7 +192,8 @@ def update_package_json(version, suffix):
|
|||
|
||||
|
||||
def tag_version(version, suffix):
|
||||
execute(['git', 'commit', '-a', '--no-verify', '-m', 'Bump v{0}'.format(version + suffix)])
|
||||
commit_message = 'Bump v{0}'.format(version + suffix)
|
||||
execute(['git', 'commit', '-a', '--no-verify', '-m', commit_message])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue