From 30b308c55359068725cf08f9ea39de9302ac1b3f Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Sun, 4 Jul 2021 13:57:49 +0200 Subject: [PATCH] fix not counting build packages as eligible --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index d6163d1..6bd11ce 100644 --- a/main.go +++ b/main.go @@ -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