We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 826595e commit 1e42087Copy full SHA for 1e42087
1 file changed
src/west/app/project.py
@@ -911,20 +911,11 @@ def do_add_parser(self, parser_adder):
911
)
912
parser.add_argument(
913
'--ignore-branches',
914
- default=None,
915
- action='store_true',
+ action=argparse.BooleanOptionalAction,
916
help='''skip output for projects with checked out
917
branches and clean working trees if the branch is
918
at the same commit as the last "west update"''',
919
920
- parser.add_argument(
921
- '--no-ignore-branches',
922
- dest='ignore_branches',
923
- action='store_false',
924
- help='''overrides a previous --ignore-branches
925
- or any compare.ignore-branches configuration
926
- option''',
927
- )
928
929
'-f',
930
'--format',
0 commit comments