Skip to content

Commit

Permalink
change --out-scan-markdown to string from bool
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Long committed Apr 23, 2024
1 parent 34054b6 commit ae9ccec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint/entrypoint/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def init(sys_argv=None) -> argparse.Namespace:
help="Specifies one or more files and/or directories that should NOT be inventoried.")
parser.add_argument("--timeout", type=str, default="600",
help="The amount of time in seconds that inspector-sbomgne will run. When this timeout is exceeded, sbomgen will gracefully conclude and present any findings discovered up to that point.")
parser.add_argument("--display-vuln-findings", type=bool, default=False,
help="If toggled, this program will present Inspector findings in the GitHub Actions job summary page")
parser.add_argument("--display-vuln-findings", type=str, default=None,
help="If set, this program will present Inspector findings in the GitHub Actions job summary page")
parser.add_argument("--out-scan-markdown", type=str, default="/tmp/scan.md",
help="The destination file path for Inspector's vulnerability scan results in markdown format.")

Expand Down

0 comments on commit ae9ccec

Please sign in to comment.