Skip to content

Commit 895101a

Browse files
authored
Merge pull request #69 from Frawless/set-installer-arch-properly
Set architecture for installer properly based on machine arch
2 parents efacc36 + 6ad6bab commit 895101a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: osia/installer/downloader/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
def _current_platform():
4444
if platform.system() == "Linux" and platform.machine() == "x86_64":
45-
return "linux", None
45+
return "linux", "amd64"
4646
if platform.system() == "Darwin" and platform.machine() == "arm64":
4747
return "mac", "arm64"
4848
if platform.system() == "Darwin" and platform.machine() == "x86_64":

0 commit comments

Comments
 (0)