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