Skip to content

Commit

Permalink
fix: updated help description for overriding parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
igor udot (horw) committed Oct 30, 2023
1 parent 7d80929 commit c3e6a3d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions idf_build_apps/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,15 +493,17 @@ def get_parser() -> argparse.ArgumentParser:
'--override-sdkconfig',
nargs='?',
type=str,
help='The --override-sdkconfig option provides a way to override specific configuration items'
" defined in the SDK's sdkconfig file using a command-line argument.",
help='The --override-sdkconfig option permits the overriding of specific configuration items defined'
' in the SDK\'s sdkconfig file and Kconfig using a command-line argument. '
'In relation to --override-sdkconfig-file, it can modify the override order for the same parameters.'
' The last argument takes priority.',
)
common_args.add_argument(
'--override-sdkconfig-file',
nargs='?',
type=str,
help='The --override-sdkconfig-file option offers an alternative approach'
' for overriding SDK configuration items.',
help='The --override-sdkconfig-file option provides an alternative (alt: --override-sdkconfig)'
' approach for overriding SDK configuration items.',
)
common_args.add_argument(
'--sdkconfig-defaults',
Expand Down

0 comments on commit c3e6a3d

Please sign in to comment.