Skip to content

Commit

Permalink
fix: match cli arguments description (intel#4456)
Browse files Browse the repository at this point in the history
Signed-off-by: Aryan Bakliwal <[email protected]>
  • Loading branch information
AryanBakliwal authored Sep 17, 2024
1 parent bdd8ebe commit dd07835
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cve_bin_tool/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def main(argv=None):
input_group.add_argument(
"--vex-file",
action="store",
help="provide vulnerability exchange (vex) filename for triage processing",
help="provide vulnerability exploitability exchange (vex) filename for triage processing",
default="",
)

Expand Down Expand Up @@ -353,15 +353,15 @@ def main(argv=None):
vex_output_group.add_argument(
"--vex-output",
action="store",
help="Provide vulnerability exchange (vex) filename to generate",
help="Provide vulnerability exploitability exchange (vex) filename to generate",
default="",
)
vex_output_group.add_argument(
"--vex-type",
action="store",
default="",
choices=["cyclonedx", "csaf", "openvex"],
help="specify type of vulnerability exchange (vex) to generate (default: cyclonedx)",
help="specify type of vulnerability exploitability exchange (vex) to generate (default: cyclonedx)",
)
vex_output_group.add_argument(
"--product",
Expand Down

0 comments on commit dd07835

Please sign in to comment.