mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +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:
@@ -287,7 +287,7 @@ impl Platform {
|
||||
Some(Platform::LinuxAlpineARM64)
|
||||
} else if cfg!(all(target_os = "linux", target_arch = "x86_64")) {
|
||||
Some(Platform::LinuxX64)
|
||||
} else if cfg!(all(target_os = "linux", target_arch = "armhf")) {
|
||||
} else if cfg!(all(target_os = "linux", target_arch = "arm")) {
|
||||
Some(Platform::LinuxARM32)
|
||||
} else if cfg!(all(target_os = "linux", target_arch = "aarch64")) {
|
||||
Some(Platform::LinuxARM64)
|
||||
|
||||
Reference in New Issue
Block a user