Tools: configure_all.py: clarify command-line --stop option

This just makes it fatal on any command...
This commit is contained in:
Peter Barker 2022-06-24 13:03:30 +10:00 committed by Peter Barker
parent a554ac3500
commit 554f20ddb1
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ import argparse
parser = argparse.ArgumentParser(description='configure all ChibiOS boards')
parser.add_argument('--build', action='store_true', default=False, help='build as well as configure')
parser.add_argument('--build-target', default='copter', help='build target')
parser.add_argument('--stop', action='store_true', default=False, help='stop on build fail')
parser.add_argument('--stop', action='store_true', default=False, help='stop on configure or build failure')
parser.add_argument('--no-bl', action='store_true', default=False, help="don't check bootloader builds")
parser.add_argument('--Werror', action='store_true', default=False, help="build with -Werror")
parser.add_argument('--pattern', default='*')