Skip to content

Commit

Permalink
False value if parameter is not present
Browse files Browse the repository at this point in the history
  • Loading branch information
vodorok committed Oct 14, 2024
1 parent 15c4a0d commit 90535b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/cmd/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ def add_arguments_to_parser(parser):
help="Store the analysis output in the given folder.")

parser.add_argument('--plist-file-name',
type=str,
dest="plist_file_name",
action='store_true',
required=False,
help="If given, all the `.plist` files containing "
"the analyzer result files will be merged "
Expand Down
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/cmd/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ def add_arguments_to_parser(parser):
"the analysis.")

parser.add_argument('--plist-file-name',
type=str,
dest="plist_file_name",
required=False,
action='store_true',
help="If given, all the `.plist` files containing "
"the analyzer result files will be merged "
"into a single `.plist` file in the report "
Expand Down

0 comments on commit 90535b3

Please sign in to comment.