mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
cli: fix download for arm32 linux (#173374)
Once again, wishing target_* were statically typed... Fixes https://github.com/microsoft/vscode-remote-release/issues/7631
This commit is contained in:
@@ -64,7 +64,7 @@ impl PreReqChecker {
|
||||
if (gnu_a.is_ok() && gnu_b.is_ok()) || is_nixos {
|
||||
return Ok(if cfg!(target_arch = "x86_64") {
|
||||
Platform::LinuxX64
|
||||
} else if cfg!(target_arch = "armhf") {
|
||||
} else if cfg!(target_arch = "arm") {
|
||||
Platform::LinuxARM32
|
||||
} else {
|
||||
Platform::LinuxARM64
|
||||
|
||||
Reference in New Issue
Block a user