Skip to content
Snippets Groups Projects
Commit 58d818f1 authored by Simon Glass's avatar Simon Glass
Browse files

buildman: Don't default to -e when using -s


When using summary mode (-s) we don't always want to display errors.
Allow this option to be omitted.

Series-to: u-boot
Series-cc: albert
Change-Id: I6b37754d55eb920ecae114fceba55834b43ea3b9
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reported-by: default avatarAlbert Aribaud <albert.u.boot@aribaud.net>
parent be338a51
Branches
Tags
No related merge requests found
...@@ -188,6 +188,7 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, ...@@ -188,6 +188,7 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
else: else:
series = None series = None
options.verbose = True options.verbose = True
if not options.summary:
options.show_errors = True options.show_errors = True
# By default we have one thread per CPU. But if there are not enough jobs # By default we have one thread per CPU. But if there are not enough jobs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment