diff options
author | michaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com> | 2023-05-22 19:16:53 +0400 |
---|---|---|
committer | michaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com> | 2023-05-22 19:16:53 +0400 |
commit | 62f924c74d6b01538f92d88e2eb3fea3e601a471 (patch) | |
tree | 4b54314a0cb6c3ecfd87970ecd624250c12df8ae /python/servo/package_commands.py | |
parent | b25f9c2d75b59b6be715251e02e8fe59200de0b2 (diff) | |
download | servo-62f924c74d6b01538f92d88e2eb3fea3e601a471.tar.gz servo-62f924c74d6b01538f92d88e2eb3fea3e601a471.zip |
Patched a bug
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index 186b21fbae9..c9d0832431e 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -434,7 +434,7 @@ class PackageCommands(CommandBase): except BuildNotFound: print("Rebuilding Servo did not solve the missing build problem.") return 1 - elif android: + if android: pkg_path = self.get_apk_path(release) exec_command = [self.android_adb_path(env)] if emulator and usb: |