[openwrt/openwrt] build,json: fix generation with empty profiles
LEDE Commits
lede-commits at lists.infradead.org
Mon Jun 21 01:44:25 PDT 2021
aparcar pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/fd0d9909bf50f114d5e7f7cedf53e542de878a2c
commit fd0d9909bf50f114d5e7f7cedf53e542de878a2c
Author: Paul Spooren <mail at aparcar.org>
AuthorDate: Sun Jun 20 20:23:45 2021 -1000
build,json: fix generation with empty profiles
If the image generation doesn't add any profiles to the output the
*profile merge* will fail. To avoid that set an empty profile as
fallback.
Signed-off-by: Paul Spooren <mail at aparcar.org>
---
scripts/json_overview_image_info.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/json_overview_image_info.py b/scripts/json_overview_image_info.py
index 45c05012b1..db47fd9e42 100755
--- a/scripts/json_overview_image_info.py
+++ b/scripts/json_overview_image_info.py
@@ -42,7 +42,7 @@ for json_file in work_dir.glob("*.json"):
output["profiles"][device_id]["images"].extend(profile["images"])
# make image lists unique by name, keep last/latest
-for device_id, profile in output["profiles"].items():
+for device_id, profile in output.get("profiles", {}).items():
profile["images"] = list({e["name"]: e for e in profile["images"]}.values())
More information about the lede-commits
mailing list