summaryrefslogtreecommitdiff
path: root/gitTag.update.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-29 21:51:30 -0600
committerJeff Carr <[email protected]>2024-11-29 21:51:30 -0600
commit3d260a0219841f4835d6a0d0e370bde483f35d08 (patch)
treeb6e3b09004109581d618613d9c72d2049656074b /gitTag.update.go
parent4a79cccffd6cd20e42271eada567c4b8c0edc2f4 (diff)
updates for autogenpb
Diffstat (limited to 'gitTag.update.go')
-rw-r--r--gitTag.update.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitTag.update.go b/gitTag.update.go
index 163b379..18af8d9 100644
--- a/gitTag.update.go
+++ b/gitTag.update.go
@@ -14,7 +14,7 @@ import (
func (repo *Repo) UpdateGitTags() error {
// delete the old hash
// r.DeleteByHash(hash)
- repo.Tags.GitTags = nil
+ repo.Tags = new(GitTags)
tags := []string{"%(objectname)", "%(creatordate)", "%(*authordate)", "%(refname)", "%(subject)"}
format := strings.Join(tags, "_,,,_")