From 8fd7334aabd05177b6f77a2a808a8738ed81cef3 Mon Sep 17 00:00:00 2001 From: zhouhouyue <1282054757@qq.com> Date: Thu, 17 Aug 2023 08:10:35 +0000 Subject: [PATCH] update build/judgePart.py. Signed-off-by: zhouhouyue <1282054757@qq.com> --- build/judgePart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/judgePart.py b/build/judgePart.py index 9628ca0..b03687b 100755 --- a/build/judgePart.py +++ b/build/judgePart.py @@ -31,7 +31,7 @@ def get_modulename_by_buildtarget(module_list_file, build_target): with open(module_list_file, "r") as module_file: module_info_data = json.load(module_file) for module in module_info_data: - if module == build_target: + if module in [build_target, f'{build_target}_override']: return module_info_data[module]; return ""