From 9a0dc876592107aad538230f65603d375e424d3d Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Fri, 9 Jul 2021 14:50:25 +0200 Subject: [PATCH] don't wait forever if package to purge was not found --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 4cfec80..52c3132 100644 --- a/main.go +++ b/main.go @@ -595,6 +595,7 @@ func (b *BuildManager) repoWorker() { log.Debug(string(res)) if err != nil && cmd.ProcessState.ExitCode() == 1 { log.Debugf("Deleteing package %s failed: Package not found in database", pkg.Pkgbase) + b.repoWG.Done() continue }