(IJPL-158134) Fix typo in arch name

GitOrigin-RevId: e292e10bc30c82f62f65923072863aa1884d20f5
This commit is contained in:
Evgeny Abramov
2024-10-10 15:31:14 +03:00
committed by intellij-monorepo-bot
parent 004638b363
commit 1ed20a3c3a

View File

@@ -176,7 +176,7 @@ class LocalArtifactsManager {
}
fun getArchitectureId(): String = when (CpuArch.CURRENT) {
CpuArch.X86 -> "x86_64"
CpuArch.X86_64 -> "x86_64"
CpuArch.ARM64 -> "arm_64"
else -> throw UnsupportedArchitectureException(System.getProperty("os.arch"))
}