fix co+ bug

This commit is contained in:
Star 2024-07-04 18:00:30 +08:00
parent b32865f984
commit 77262d1527

View File

@ -105,7 +105,7 @@ func showGitTags(args []string) bool {
func commitAndTagGitRepo(args []string) bool { func commitAndTagGitRepo(args []string) bool {
if commitGitRepo(args) { if commitGitRepo(args) {
return addGitTag(args) return addGitTag([]string{})
} }
return false return false
} }