Fix bug in dependency resolution

This commit is contained in:
5hir0kur0
2024-07-10 14:36:36 +09:00
committed by André Roth
parent 11401ca472
commit 8d537b4e3e

View File

@@ -351,7 +351,7 @@ func (l *PackageList) VerifyDependencies(options int, architectures []string, so
cache[hash] = satisfied
}
if !satisfied && !ok {
if !satisfied {
variantsMissing = append(variantsMissing, dep)
}