Skip to content

Commit

Permalink
Merge pull request #13 from blackducksoftware/dev
Browse files Browse the repository at this point in the history
v1.0.13 - image license file - version fix
  • Loading branch information
matthewb66 authored Sep 19, 2024
2 parents 6dc0ecd + cdd0929 commit abc2561
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Synopsys Scan Yocto Script - bd_scan_yocto_via_sbom.py v1.0.12
# Synopsys Scan Yocto Script - bd_scan_yocto_via_sbom.py v1.0.13

# PROVISION OF THIS SCRIPT
This script is provided under the MIT license (see LICENSE file).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bd_scan_yocto_via_sbom"
version = "1.0.12"
version = "1.0.13"
authors = [
{ name="Matthew Brady", email="[email protected]" },
]
Expand Down
2 changes: 2 additions & 0 deletions yocto_import_sbom/BBClass.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ def process_licman_file(lic_manifest_file, reclist):
line = line.strip()
if line.startswith("PACKAGE VERSION:"):
ver = line.split(': ')[1]
elif line.startswith("VERSION:"):
ver = line.split(': ')[1]
elif line.startswith("RECIPE NAME:"):
recipe = line.split(': ')[1]

Expand Down
2 changes: 1 addition & 1 deletion yocto_import_sbom/ConfigClass.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __init__(self):
else:
logging.basicConfig(level=loglevel)

logging.info("Black Duck Yocto scan via SBOM utility - v1.0.12")
logging.info("Black Duck Yocto scan via SBOM utility - v1.0.13")
logging.info("SUPPLIED ARGUMENTS:")
for arg in vars(args):
logging.info(f"--{arg}={getattr(args, arg)}")
Expand Down

0 comments on commit abc2561

Please sign in to comment.