diff mbox series

[1/2] classes/sbom-cve-check: use named variables when iterating

Message ID 20260401165447.2852846-1-ross.burton@arm.com
State New
Headers show
Series [1/2] classes/sbom-cve-check: use named variables when iterating | expand

Commit Message

Ross Burton April 1, 2026, 4:54 p.m. UTC
Little cleanups: unpack when iterating to avoid needing to use indexes,
and only update symlinks if update_link is not None.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/classes-recipe/sbom-cve-check.bbclass | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/meta/classes-recipe/sbom-cve-check.bbclass b/meta/classes-recipe/sbom-cve-check.bbclass
index 2e79dee5716..4244ee657a8 100644
--- a/meta/classes-recipe/sbom-cve-check.bbclass
+++ b/meta/classes-recipe/sbom-cve-check.bbclass
@@ -71,9 +71,9 @@  python do_sbom_cve_check() {
         "--disable-auto-updates"
     ]
 
-    for export_file in export_files:
+    for export_type, export_file, export_link in export_files:
         cmd_args.extend(
-            ["--export-type", export_file[0], "--export-path", export_file[1]]
+            ["--export-type", export_type, "--export-path", export_file]
         )
 
     cmd_args.extend(d.getVar("SBOM_CVE_CHECK_EXTRA_ARGS").split())
@@ -85,9 +85,10 @@  python do_sbom_cve_check() {
         bb.error(f"sbom-cve-check failed: {e}")
         return
 
-    for export_file in export_files:
-        bb.note(f"sbom-cve-check exported: {export_file[1]}")
-        update_symlinks(export_file[1], export_file[2])
+    for export_type, export_file, export_link in export_files:
+        bb.note(f"sbom-cve-check exported: {export_file}")
+        if export_link:
+            update_symlinks(export_file, export_link)
 }
 
 addtask do_sbom_cve_check after do_create_image_sbom_spdx before do_build