Skip to content

Commit

Permalink
fix: lowercase the arch
Browse files Browse the repository at this point in the history
Signed-off-by: Frost Ming <[email protected]>
  • Loading branch information
frostming committed Jul 5, 2024
1 parent da368f0 commit a7a7b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dep_logic/tags/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def current(cls) -> Self:
import platform

system = platform.system()
arch = Arch.parse(platform.machine())
arch = Arch.parse(platform.machine().lower())
if system == "Linux":
libc_ver = platform.libc_ver()[1]
if libc_ver:
Expand Down

0 comments on commit a7a7b5f

Please sign in to comment.