Skip to content

Commit

Permalink
Merge pull request #854 from tsteven4/androidinstall
Browse files Browse the repository at this point in the history
fix computation of archive location for android install.
  • Loading branch information
miurahr authored Dec 16, 2024
2 parents b8683af + 9ae5295 commit 5ee98ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aqt/archives.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def _get_archives_base(self, name, target_packages):
os_name = self.os_name
if self.target == "android" and self.version >= Version("6.7.0"):
os_name = "all_os"
if self.os_name == "windows":
elif self.os_name == "windows":
os_name += "_x86"
elif os_name != "linux_arm64" and os_name != "all_os" and os_name != "windows_arm64":
os_name += "_x64"
Expand Down

0 comments on commit 5ee98ef

Please sign in to comment.