diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-06-29 21:21:35 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-07-02 19:00:48 +0200 |
commit | bee3fd09c210a192e52f9950c630c49c655de802 (patch) | |
tree | 819b01334c86bff4454266e64b49453cf6a0b625 /python/servo/post_build_commands.py | |
parent | 8293b295beb8c76113f525f41ba16e204a7cb22b (diff) | |
download | servo-bee3fd09c210a192e52f9950c630c49c655de802.tar.gz servo-bee3fd09c210a192e52f9950c630c49c655de802.zip |
mach android-emulator: avoid mach error messages for Python exceptions
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index b5dd211a144..30c59f417f5 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -181,7 +181,7 @@ class PostBuildCommands(CommandBase): return 1 env = self.build_env() emulator = path.join(env["ANDROID_SDK"], "emulator", "emulator") - check_call([emulator] + args) + return subprocess.call([emulator] + args) @Command('rr-record', description='Run Servo whilst recording execution with rr', |