summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-09 14:39:32 -0600
committerJeff Carr <[email protected]>2024-01-09 14:39:32 -0600
commit969f6e284094effe27b33eb2cd4819c71137c9c4 (patch)
tree4ce21d3c3fb268628786f2600b9f7c210155e1be
parent41e517b85df05e54b63f946f90a5de0953f10027 (diff)
more debugging
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--git.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.go b/git.go
index 75f4618..76d34bc 100644
--- a/git.go
+++ b/git.go
@@ -72,8 +72,8 @@ func (r *repo) getCurrentBranchName() string {
}
func (r *repo) getCurrentBranchVersion() string {
- log.Info("r.path", r.path)
out := run(r.path, "git", "describe --tags")
+ log.Warn("getCurrentBranchVersion", out)
r.vLabel.SetText(out)
return out
}