Skip to content

Commit

Permalink
fix computation of archive location for android install.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteven4 committed Dec 15, 2024
1 parent 5a2e729 commit 9ae5295
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 9ae5295

Please sign in to comment.