mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
android: Fix install (#33277)
self.config["android"]["target"] is unset, causing an exception. We can just use self.target.triple() instead. Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
This commit is contained in:
parent
a62612a025
commit
35ca050bfb
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue