summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
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"
}
}