From f6c9d72e161e61fcfbd04ab61a8f0d3cf8ea1c1e Mon Sep 17 00:00:00 2001 From: Nabil Ghodbane Date: Tue, 19 Mar 2024 10:58:54 +0100 Subject: [PATCH] spns #40779: sat package bug fix --- commands/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/package.py b/commands/package.py index 7ae351d..9ee7033 100644 --- a/commands/package.py +++ b/commands/package.py @@ -998,7 +998,7 @@ def get_archives(config, logger): continue # skip product if github and product is not opensource - if config.APPLICATION.properties.github == "yes" and src.get_property_in_product_cfg(prod_info, "is_opensource") == "no": + if config.APPLICATION.properties.github == "yes" and src.get_property_in_product_cfg(p_info, "is_opensource") == "no": continue if p_info.get_source == "archive": -- 2.39.2