aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/servo/command_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index d5b1881618b..b8fd132387d 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -330,7 +330,7 @@ class CommandBase(object):
def get_apk_path(self, build_type: BuildType):
base_path = util.get_target_dir()
- base_path = path.join(base_path, "android", self.config["android"]["target"])
+ base_path = path.join(base_path, "android", self.target.triple())
apk_name = "servoapp.apk"
return path.join(base_path, build_type.directory_name(), apk_name)