mach android-emulator: avoid mach error messages for Python exceptions

This commit is contained in:
Simon Sapin 2018-06-29 21:21:35 +02:00
parent 8293b295be
commit bee3fd09c2

View file

@ -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',