fix: add x86_64 to X64 list. (#272)

This commit is contained in:
坐和放宽 2024-12-08 03:07:56 +08:00 committed by GitHub
parent 4537e0b6d7
commit 68eac9c53c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ sealed class Arch(val name: String) {
companion object : ArchFinder by JvmArchFinder() {
private val DefinedArchStrings = mapOf(
X64 to listOf(
"amd64", "x64"
"amd64", "x64", "x86_64"
),
Arm64 to listOf(
"arm64", "aarch64"