mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02: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:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user