fix not counting build packages as eligible

This commit is contained in:
2021-07-04 13:57:49 +02:00
parent 60469a15a6
commit 30b308c553

View File

@@ -413,6 +413,7 @@ func (b *BuildManager) parseWorker() {
repoVer := getVersionFromRepo(pkg)
if repoVer != "" && alpm.VerCmp(repoVer, pkgVer) > 0 {
log.Debugf("Skipped %s: Version in repo higher than in PKGBUILD (%s < %s)", info.Pkgbase, pkgVer, repoVer)
b.stats.eligible++
b.stats.fullyBuild++
b.parseWG.Done()
continue