From 9f58f14452632e434eccb8804eedcaffe067433a Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Mon, 25 Sep 2023 15:45:28 +0200 Subject: [PATCH] ttm: Print the full list of missing products before exiting Check the rest as well instead of bailing early. --- ttm/releaser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttm/releaser.py b/ttm/releaser.py index 49aef89a..b55b9ae6 100644 --- a/ttm/releaser.py +++ b/ttm/releaser.py @@ -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