We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 350faad commit 2443e9cCopy full SHA for 2443e9c
blint/cli.py
@@ -130,7 +130,7 @@ def build_parser():
130
"--src",
131
dest="src_dir_image",
132
action="extend",
133
- default=[os.getcwd()],
+ default=[],
134
nargs="+",
135
help="Source directories, container images or binary files. Defaults to current directory.",
136
)
@@ -238,6 +238,8 @@ def handle_args():
238
args = build_args()
239
if not args.no_banner and args.subcommand_name != "sbom":
240
print(BLINT_LOGO)
241
+ if not args.src_dir_image:
242
+ args.src_dir_image = [os.getcwd()]
243
blint_options = BlintOptions(
244
deep_mode=args.deep_mode,
245
exports_prefix=args.exports_prefix,
0 commit comments