diff options
Diffstat (limited to 'gitTag.common.go')
| -rw-r--r-- | gitTag.common.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gitTag.common.go b/gitTag.common.go index ac0f09c..635ca7d 100644 --- a/gitTag.common.go +++ b/gitTag.common.go @@ -118,10 +118,10 @@ func (repo *Repo) IsBranchLocal(findname string) *GitTag { if !strings.HasPrefix(t.Refname, "refs/heads") { continue } - path, filename := filepath.Split(t.Refname) - log.Log(INFO, "gitpb.IsBranch() tag:", path, filename, "from", repo.GetGoPath()) + _, filename := filepath.Split(t.Refname) + // log.Log(INFO, "gitpb.IsBranch() tag:", path, filename, "from", repo.GetGoPath()) if filename == findname { - log.Log(INFO, "gitpb.IsBranch() found tag:", path, filename, "from", repo.GetGoPath()) + // log.Log(INFO, "gitpb.IsBranch() found tag:", path, filename, "from", repo.GetGoPath()) return t } } |
