forked from github/server
10 lines
167 B
Python
Executable file
10 lines
167 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
def new_version(ver):
|
|
os.system("git tag -f v%s" % ver)
|
|
os.system("git push --tags -f")
|
|
|
|
new_version(sys.argv[1])
|