summaryrefslogtreecommitdiff
path: root/gitTag.common.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-06 04:27:49 -0500
committerJeff Carr <[email protected]>2025-10-06 04:27:49 -0500
commitc7c54de39149e07c5cb03e8d8aa49793f32047de (patch)
tree63065a4c532b0599f7fd111c545c1169de22e3e4 /gitTag.common.go
parentd9ed0838c403e982f572d108542bcc16705049d9 (diff)
cleanup code further
Diffstat (limited to 'gitTag.common.go')
-rw-r--r--gitTag.common.go6
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
}
}