ttm: Print the full list of missing products before exiting

Check the rest as well instead of bailing early.
This commit is contained in:
Fabian Vogt 2023-09-25 15:45:28 +02:00
parent 9d6c197574
commit 9f58f14452

View File

@ -158,7 +158,7 @@ class ToTestReleaser(ToTestManager):
for image_product in self.project.containerfile_products:
products[image_product.package] = image_product.archs
all_found = all_found and self.verify_package_list_complete('containerfile', products)
all_found = self.verify_package_list_complete('containerfile', products) and all_found
return all_found