diff options
| -rw-r--r-- | human.go | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -77,23 +77,17 @@ func ReleaseReportHeader() string { "STATE") } -func (f *Forge) PrintReleaseReport() int { +func (f *Forge) PrintReleaseReport(repos *gitpb.Repos) int { var count int log.Info(ReleaseReportHeader()) - loop := f.Repos.SortByFullPath() + loop := repos.SortByFullPath() for loop.Scan() { check := loop.Next() - if f.Config.IsReadOnly(check.GetGoPath()) { - continue - } - if check.GetLastTag() == check.GetTargetVersion() { - continue - } count += 1 if check == nil { - log.Info("boo, you didn't git clone", check.GetGoPath()) + // wtf continue } var state string |
