summaryrefslogtreecommitdiff
path: root/currentVersions.go
diff options
context:
space:
mode:
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}