Skip to content

Commit

Permalink
Add help message for merge command config_file option
Browse files Browse the repository at this point in the history
  • Loading branch information
nightlark committed Oct 7, 2024
1 parent 29b6264 commit c5aed0d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion surfactant/cmd/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@

@click.argument("sbom_outfile", envvar="SBOM_OUTPUT", type=click.File("w"), required=True)
@click.argument("input_sboms", type=click.File("r"), required=True, nargs=-1)
@click.option("--config_file", type=click.File("r"), required=False)
@click.option(
"--config_file",
type=click.File("r"),
required=False,
help="Config file for controlling some aspects of the merged SBOM, primarily the creation of a new top-level system object (settings here will typically take precedence over command line options)"
)
@click.option(
"--output_format",
is_flag=False,
Expand Down

0 comments on commit c5aed0d

Please sign in to comment.