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:
Josh Matthews
2018-05-14 09:58:38 -04:00
committed by GitHub
parent 1d8283e010
commit a568a71498

View File

@@ -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):