Fixes a bug in the code that created the hash dictionary that was accidentally excluding items with a SHA256 hash instead of including them
Signed-off-by: Joshua Watt <[email protected]> --- meta/lib/oe/sbom30.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oe/sbom30.py b/meta/lib/oe/sbom30.py index f7c4b323d56..0595ebd41ca 100644 --- a/meta/lib/oe/sbom30.py +++ b/meta/lib/oe/sbom30.py @@ -195,7 +195,7 @@ class ObjectSet(oe.spdx30.SHACLObjectSet): if not isinstance(v, oe.spdx30.Hash): continue - if v.algorithm == oe.spdx30.HashAlgorithm.sha256: + if v.algorithm != oe.spdx30.HashAlgorithm.sha256: continue self.by_sha256_hash.setdefault(v.hashValue, set()).add(obj) -- 2.48.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#210444): https://lists.openembedded.org/g/openembedded-core/message/210444 Mute This Topic: https://lists.openembedded.org/mt/110896971/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
