summaryrefslogtreecommitdiff
path: root/branches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-11 12:00:53 -0500
committerJeff Carr <[email protected]>2025-03-11 12:00:53 -0500
commitdba126cfdf02df3c2ce8b0eb2083290ecd5675cf (patch)
treee7e03782b380cc0fea6bb28a25795b7180711388 /branches.go
parent9ad119374690fef75e32464d926a4673a79824db (diff)
quiet debugging outputv0.0.95v0.0.94
Diffstat (limited to 'branches.go')
-rw-r--r--branches.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/branches.go b/branches.go
index 9a6e8f9..9159e92 100644
--- a/branches.go
+++ b/branches.go
@@ -37,9 +37,9 @@ func (repo *Repo) GetRemoteBranches() []string {
// v0.22.61-15-gbab84d7
func (repo *Repo) GetHashName(h string) (string, error) {
h = strings.TrimSpace(h)
- log.Info("GetHashName() is looking for", repo.GetGoPath(), h)
+ // log.Info("GetHashName() is looking for", repo.GetGoPath(), h)
cmd := []string{"git", "describe", "--tags", h}
- r, err := repo.RunStrict(cmd)
+ r, err := repo.RunQuiet(cmd)
if err != nil {
return "", err
}