added detection for already build packages waiting to be moved

This commit is contained in:
2023-12-10 14:51:53 +01:00
parent e6dd3fd3ef
commit 9822c43cf1
2 changed files with 22 additions and 0 deletions

View File

@@ -601,6 +601,15 @@ func (b *BuildManager) genQueue() ([]*ProtoPackage, error) {
continue
}
aBuild, err := pkg.IsBuild()
if err != nil {
log.Warningf("[QG] %s->%s error determining build packages: %v", pkg.FullRepo, pkg.Pkgbase, err)
}
if aBuild {
log.Infof("[QG] %s->%s already build, skipping build", pkg.FullRepo, pkg.Pkgbase)
continue
}
if pkg.DBPackage == nil {
err = pkg.toDBPackage(true)
if err != nil {