diff options
| author | Jeff Carr <[email protected]> | 2024-02-14 00:09:58 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-14 00:09:58 -0600 |
| commit | f7947b08b69b1a2f02168de511e7c8b005035221 (patch) | |
| tree | adae2c1f5b0bc546a078e1311b3e18b0a0636578 /git.go | |
| parent | 95fd6ca05a28774ad374801984a4f62c202835d3 (diff) | |
code reorg and clean
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'git.go')
| -rw-r--r-- | git.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" } } |
