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 651f925
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions analyzer/codechecker_analyzer/cmd/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ def add_arguments_to_parser(parser):
parser.add_argument('--plist-file-name',
type=str,
dest="plist_file_name",
default='',
required=False,
help="If given, all the `.plist` files containing "
"the analyzer result files will be merged "
Expand Down
1 change: 1 addition & 0 deletions analyzer/codechecker_analyzer/cmd/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def add_arguments_to_parser(parser):
type=str,
dest="plist_file_name",
required=False,
default='',
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 651f925

Please sign in to comment.