summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-14 00:09:58 -0600
committerJeff Carr <[email protected]>2024-02-14 00:09:58 -0600
commitf7947b08b69b1a2f02168de511e7c8b005035221 (patch)
treeadae2c1f5b0bc546a078e1311b3e18b0a0636578 /git.go
parent95fd6ca05a28774ad374801984a4f62c202835d3 (diff)
code reorg and clean
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'git.go')
-rw-r--r--git.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/git.go b/git.go
index 0ddea8c..7580062 100644
--- a/git.go
+++ b/git.go
@@ -54,7 +54,7 @@ func (rs *RepoStatus) getLastTagVersion() string {
// out = run(r.path, "git", "describe --tags c871d5ecf051a7dc4e3a77157cdbc0a457eb9ae1")
out = run(rs.realPath.String(), "git", lastreal)
rs.lasttag.SetValue(out)
- rs.tagsDrop.SetText(out)
+ // rs.tagsDrop.SetText(out)
// rs.lastLabel.SetText(out)
return out
}
@@ -65,7 +65,7 @@ func (rs *RepoStatus) populateTags() {
for _, tag := range listFiles(tmp) {
if rs.tags[tag] == "" {
log.Log(INFO, "populateTags() Adding new tag", tag)
- rs.tagsDrop.AddText(tag)
+ // rs.tagsDrop.AddText(tag)
rs.tags[tag] = "origin"
}
}