diff options
| author | Jeff Carr <[email protected]> | 2025-01-07 04:58:05 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-07 04:58:05 -0600 |
| commit | 904a5e8568b1e1640008a219dd1418a04c53bd7f (patch) | |
| tree | a7a9172ab01cc7c046964c78246e7d7630a969cc /tagWindow.go | |
| parent | 2ea1113c7211d09ee2637a00645f1b318fb855f8 (diff) | |
remove lots of old stuff!
Diffstat (limited to 'tagWindow.go')
| -rw-r--r-- | tagWindow.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tagWindow.go b/tagWindow.go index fbd67dc..07effd3 100644 --- a/tagWindow.go +++ b/tagWindow.go @@ -51,7 +51,7 @@ func (rs *RepoStatus) makeTagBox(box *gui.Node) error { } tagB := new(GitTagBox) rs.Tags = tagB - tagB.group = box.NewGroup(".git tags for " + rs.String()) + tagB.group = box.NewGroup(".git tags for " + rs.Path()) // tagB.group.NewButton("prune tags", func() { // tagB.Prune() @@ -110,9 +110,9 @@ func (rs *RepoStatus) makeTagBox(box *gui.Node) error { all = append(all, []string{"git", "push", "--delete", "origin", tagversion}) if rs.DoAll(all) { - log.Info("TAG DELETED", rs.String(), tagversion) + log.Info("TAG DELETED", rs.Path(), tagversion) } else { - log.Info("TAG DELETE FAILED", rs.String(), tagversion) + log.Info("TAG DELETE FAILED", rs.Path(), tagversion) } }) |
