ref: if not bundle continue

This commit is contained in:
relikd
2025-09-02 20:22:33 +02:00
parent 810f8efd72
commit e7cff007a0

View File

@@ -1769,7 +1769,9 @@ class InstallQueue:
# reverse to install main package last (allow re-install until success)
for i, tar in enumerate(reversed(self.installQueue), 1):
bundle = TarPackage(tar).extract(dryRun=self.dryRun)
if bundle:
if not bundle:
continue # install error
isPrimary = i == total
linkBin = linkPrim if isPrimary else linkDeps