summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
Diffstat (limited to 'git.go')
-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
}