Don't push when bumping version

This commit is contained in:
Cheng Zhao 2015-04-12 12:52:07 +08:00
parent b9b7928e7d
commit e5a7921873

View file

@ -32,7 +32,6 @@ def main():
update_version_h(versions)
update_info_plist(version)
tag_version(version)
git_push()
def increase_version(versions, index):
@ -118,10 +117,5 @@ def tag_version(version):
execute(['git', 'tag', 'v{0}'.format(version)])
def git_push():
execute(['git', 'push'])
execute(['git', 'push', '--tags'])
if __name__ == '__main__':
sys.exit(main())