Skip to content

Commit

Permalink
Fix metadata.properties depth value
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Ringer <[email protected]>
  • Loading branch information
jonringer committed Sep 30, 2024
1 parent 36dc5f3 commit ab5e04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sbomnix/sbomdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def to_cdx(self, cdx_path, printinfo=True):
if self.depth:
prop = {}
prop["name"] = "sbom_dependencies_depth"
prop["value"] = self.depth
prop["value"] = str(self.depth)
cdx["metadata"]["properties"].append(prop)
tool = {}
tool["vendor"] = "TII"
Expand Down

0 comments on commit ab5e04d

Please sign in to comment.