diff options
author | Simon Glass <sjg@chromium.org> | 2024-07-17 16:56:56 +0100 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2024-07-26 08:01:06 -0600 |
commit | fd385b3b013d13f567f3016c8c8da6667301b8ea (patch) | |
tree | 1c3156573926ddcf1c7af1bac18b411033455736 /tools | |
parent | a056c4272ca62ede1c257850ec7751ab865f8239 (diff) | |
download | u-boot-fd385b3b013d13f567f3016c8c8da6667301b8ea.tar.gz u-boot-fd385b3b013d13f567f3016c8c8da6667301b8ea.tar.bz2 u-boot-fd385b3b013d13f567f3016c8c8da6667301b8ea.zip |
qconfig: Move arg checking a little higher
Check for scan_source as one of the possible operations for this tool,
moving the check above the scan_source implementation.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/qconfig.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/qconfig.py b/tools/qconfig.py index d8f0a716fe..6d263ce30d 100755 --- a/tools/qconfig.py +++ b/tools/qconfig.py @@ -1534,14 +1534,15 @@ def main(): col = terminal.Color(terminal.COLOR_NEVER if args.nocolour else terminal.COLOR_IF_TERMINAL) + if not any((args.force_sync, args.build_db, args.imply, args.find, + args.scan_source)): + parser.print_usage() + sys.exit(1) + if args.scan_source: do_scan_source(os.getcwd(), args.update) return 0 - if not any((args.force_sync, args.build_db, args.imply, args.find)): - parser.print_usage() - sys.exit(1) - # prefix the option name with CONFIG_ if missing configs = [prefix_config(cfg) for cfg in args.configs] |