diff options
Diffstat (limited to 'currentVersions.go')
| -rw-r--r-- | currentVersions.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/currentVersions.go b/currentVersions.go index 48563f9..1360c3c 100644 --- a/currentVersions.go +++ b/currentVersions.go @@ -37,7 +37,8 @@ func (repo *Repo) setMasterVersion() { if err == nil { repo.MasterVersion = v } else { - log.Log(WARN, "gitpb.GitMasterVersion() error:", err) + // this is dumb + // log.Log(WARN, "gitpb.GitMasterVersion() error:", err) } } @@ -137,7 +138,7 @@ func (repo *Repo) gitVersionByName(name string) (string, error) { r, err := repo.RunQuiet(cmd) output := strings.Join(r.Stdout, "\n") if err != nil { - log.Log(WARN, repo.FullPath, "gitDescribeByName() ", output, err, cmd) + // log.Log(WARN, repo.FullPath, "gitDescribeByName() ", output, err, cmd) return "", err } return strings.TrimSpace(output), nil |
