Skip to content

Commit

Permalink
Merge pull request #140 from lumjjb/fix-no-args
Browse files Browse the repository at this point in the history
make --file argument required
  • Loading branch information
jspeed-meyers authored Aug 1, 2023
2 parents 93c4a14 + fd19307 commit e061e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ntia_conformance_checker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_parsed_args():
prog="ntia-checker",
description="Check if SPDX SBOM complies with NTIA minimum elements",
)
parser.add_argument("--file", help="Filepath for SPDX SBOM")
parser.add_argument("--file", required=True, help="Filepath for SPDX SBOM")
parser.add_argument(
"--output",
choices=["print", "json", "html", "quiet"],
Expand Down

0 comments on commit e061e17

Please sign in to comment.