summaryrefslogtreecommitdiff
path: root/gitConfig.go
diff options
context:
space:
mode:
Diffstat (limited to 'gitConfig.go')
-rw-r--r--gitConfig.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitConfig.go b/gitConfig.go
index 029c473..389b028 100644
--- a/gitConfig.go
+++ b/gitConfig.go
@@ -280,10 +280,10 @@ func (rs *RepoStatus) BranchExists(branch string) bool {
for i, t := range rs.Tags.tags {
base := filepath.Base(t.tag.String())
if base == branch {
- log.Info("found tag:", i, t.tag.String())
+ log.Info("found branch tag:", i, t.tag.String())
return true
}
- log.Info("not tag:", i, t.tag.String())
+ // log.Info("not tag:", i, t.tag.String())
}
log.Log(REPOWARN, rs.Path(), "did not find branch", branch)
return false