Exit early when patches fail to apply (issue #2012)
This commit is contained in:
parent
6a603af993
commit
03e25c778a
|
@ -80,6 +80,7 @@ def apply_patch_config():
|
||||||
if results['fail'] > 0:
|
if results['fail'] > 0:
|
||||||
sys.stdout.write('\n')
|
sys.stdout.write('\n')
|
||||||
write_note('ERROR', '%d patches failed to apply. Your build will not be correct.' % results['fail'])
|
write_note('ERROR', '%d patches failed to apply. Your build will not be correct.' % results['fail'])
|
||||||
|
raise Exception('%d patches failed to apply. Your build will not be correct.' % results['fail'])
|
||||||
|
|
||||||
# Parse command-line options.
|
# Parse command-line options.
|
||||||
disc = """
|
disc = """
|
||||||
|
|
Loading…
Reference in New Issue