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 }