diff options
| author | Jeff Carr <[email protected]> | 2024-11-29 02:01:25 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-29 02:01:25 -0600 |
| commit | d283d2d2978a9e4914af1f93471bbcc24e76809d (patch) | |
| tree | eb86fcdccb67b2eaa49f9a58d79290ed8af261d0 /gitTags.update.go | |
| parent | 96d37b5941717f9c3852429ba25420c6ccb3f997 (diff) | |
get devel and user versions
Diffstat (limited to 'gitTags.update.go')
| -rw-r--r-- | gitTags.update.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gitTags.update.go b/gitTags.update.go index 465fe70..41e71ed 100644 --- a/gitTags.update.go +++ b/gitTags.update.go @@ -55,17 +55,17 @@ func (repo *Repo) UpdateGitTags() error { } refname = parts[3] subject = parts[4] - } - newr := GitTag{ - Refname: refname, - Objectname: hash, - Subject: subject, - Creatordate: ctime, - Authordate: atime, - } + newr := GitTag{ + Refname: refname, + Objectname: hash, + Subject: subject, + Creatordate: ctime, + Authordate: atime, + } - repo.AppendGitTag(&newr) + repo.AppendGitTag(&newr) + } return nil } |
