summaryrefslogtreecommitdiff
path: root/currentVersions.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-20 11:45:16 -0500
committerJeff Carr <[email protected]>2025-08-20 11:45:16 -0500
commitaef107af0d57519c5579139dee850ca418e6d04e (patch)
tree95bc13a7e5f3164653ca133f9d6dcc64690c7b87 /currentVersions.go
parentf08a517bc42a3762b2d43291cd45552f10f0ae07 (diff)
quiet older printf's to STDOUT
Diffstat (limited to 'currentVersions.go')
-rw-r--r--currentVersions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/currentVersions.go b/currentVersions.go
index 495d1ec..20d9aee 100644
--- a/currentVersions.go
+++ b/currentVersions.go
@@ -145,7 +145,7 @@ func (repo *Repo) gitVersionByName(name string) (string, error) {
}
if !repo.IsBranch(name) {
// tag does not exist
- log.Log(WARN, "LocalTagExists()", name, "did not exist")
+ // log.Log(WARN, "LocalTagExists()", name, "did not exist")
return "", errors.New("gitDescribeByName() git fatal: Not a valid object name: " + name)
}
cmd := []string{"git", "describe", "--tags", "--always", name}