diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-05-14 09:58:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 09:58:38 -0400 |
commit | a568a71498c233247e183dfd893fd0b6095f6a1a (patch) | |
tree | 317e52715a7669c09918c70555f4b9f90d622917 /python/mach_bootstrap.py | |
parent | 1d8283e01059710737f55531e777a4f19adb6f9e (diff) | |
download | servo-a568a71498c233247e183dfd893fd0b6095f6a1a.tar.gz servo-a568a71498c233247e183dfd893fd0b6095f6a1a.zip |
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.
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r-- | python/mach_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py index 4bbd1fe7d95..65c34415b8a 100644 --- a/python/mach_bootstrap.py +++ b/python/mach_bootstrap.py @@ -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): |