Skip to content

Commit fc46518

Browse files
committed
Fixed tags push command
1 parent 5c014ba commit fc46518

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

release.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ def release():
3838
os.system("git tag {0}".format(v))
3939
ans = input("Change committed, push to server? (Y/n)")
4040
if ans.lower() in ("y", "yes"):
41-
# os.system("git push")
42-
# os.system("git push --tags")
43-
os.system("git push --follow-tags")
41+
os.system("git push --tags")
42+
# os.system("git push --follow-tags")
4443
ans = input("Build dist packages?(Y/n)")
4544
if ans.lower() in ("y", "yes"):
4645
# os.system("rm -rf dist/*") #Linux

0 commit comments

Comments
 (0)