Skip to content

Commit

Permalink
Don't suppress errors when executing mach bootstrap processes.
Browse files Browse the repository at this point in the history
Omitting an argument to sys.exit causes it to default to 0, so buildbot doesn't report it as an error.
  • Loading branch information
jdm committed May 14, 2018
1 parent 1d8283e commit a568a71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/mach_bootstrap.py
Expand Up @@ -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):
Expand Down

0 comments on commit a568a71

Please sign in to comment.