mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Don't suppress errors when executing mach bootstrap processes.
Omitting an argument to sys.exit causes it to default to 0, so buildbot doesn't report it as an error.
This commit is contained in:
parent
1d8283e010
commit
a568a71498
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ def _process_exec(args):
|
|||
err.seek(0)
|
||||
shutil.copyfileobj(err, sys.stdout)
|
||||
|
||||
sys.exit()
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
def wpt_path(is_firefox, topdir, *paths):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue