aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py2
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',