Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions blint/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ def build_parser():
nargs="+",
help="Directories containing pre-build and build BOMs. Use to improve the precision.",
)
sbom_parser.add_argument(
"--use-blintdb",
action="store_true",
default=os.path.exists(BLINTDB_LOC),
dest="use_blintdb",
help=f"Use blintdb for symbol resolution. Defaults to true if the file exists at {BLINTDB_LOC}. Use environment variables: BLINTDB_IMAGE_URL, BLINTDB_HOME, and BLINTDB_REFRESH for customization.",
)
db_parser = subparsers.add_parser(
"db", help="Command to manage the pre-compiled database."
)
Expand Down
Loading