Fix extract scans interface CLI default

This commit is contained in:
Kristen Newbury
2023-03-02 11:43:25 -05:00
parent 1be65372e8
commit 953d47edd3

View File

@@ -33,9 +33,9 @@ parser.add_argument('outdir', metavar='output-dir', type=str, help='output direc
parser.add_argument('csvout', metavar='csv-outfile', type=str, help='processing status csv output file name to use') parser.add_argument('csvout', metavar='csv-outfile', type=str, help='processing status csv output file name to use')
parser.add_argument('-r', '--write-raw-tables', action="store_true", parser.add_argument('-r', '--write-raw-tables', action="store_true",
help='Write the raw sarif tables to the output directory') help='Write the raw sarif tables to the output directory')
parser.add_argument('-f','--input-signature', metavar='input-signature', type=str, default="LGTM", parser.add_argument('-f','--input-signature', metavar='input-signature', type=str, default="CLI",
help='Signature of the sarif, as in, where it was generated it may affect the signature.' help='Signature of the sarif, as in, where it was generated it may affect the signature.\n'
'Options: LGTM, CLI' 'Options: LGTM, CLI\n'
'If current represented signatures are not sufficient, view signature_single.py for how to support further signatures.' 'If current represented signatures are not sufficient, view signature_single.py for how to support further signatures.'
' Default: "%(default)s"') ' Default: "%(default)s"')
args = parser.parse_args() args = parser.parse_args()