mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
patman: Correct operation of -n
This operation was unfortunately broken by a recent change. It is now
necessary to use -i in addition to -n, if there are errors or warnings in
the patches.
Correct this by always showing the summary information.
Fixes: f365375975
("patman: Move main code out to a control module")
Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
08594d4986
commit
4a9e578138
1 changed files with 5 additions and 6 deletions
|
@ -170,9 +170,8 @@ def send(args):
|
|||
ok = ok and gitutil.CheckSuppressCCConfig()
|
||||
|
||||
its_a_go = ok or args.ignore_errors
|
||||
if its_a_go:
|
||||
email_patches(
|
||||
col, series, cover_fname, patch_files, args.process_tags,
|
||||
its_a_go, args.ignore_bad_tags, args.add_maintainers,
|
||||
args.limit, args.dry_run, args.in_reply_to, args.thread,
|
||||
args.smtp_server)
|
||||
email_patches(
|
||||
col, series, cover_fname, patch_files, args.process_tags,
|
||||
its_a_go, args.ignore_bad_tags, args.add_maintainers,
|
||||
args.limit, args.dry_run, args.in_reply_to, args.thread,
|
||||
args.smtp_server)
|
||||
|
|
Loading…
Reference in a new issue