Skip to content

Commit

Permalink
make --file argument required
Browse files Browse the repository at this point in the history
Signed-off-by: Brandon Lum <lumjjb@gmail.com>
  • Loading branch information
lumjjb committed Aug 1, 2023
1 parent 93c4a14 commit fd19307
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 fd19307

Please sign in to comment.