cli: use x64 server for windows arm64 (#171861)

cli: use x64 server for arm64

We don't publish an arm64 server yet. Same thing as ssh does.
This commit is contained in:
Connor Peet
2023-01-20 11:13:22 -08:00
committed by GitHub
parent 0e40178b96
commit 4a7adb6667

View File

@@ -247,7 +247,7 @@ impl Platform {
Platform::DarwinARM64 => "server-darwin-arm64",
Platform::WindowsX64 => "server-win32-x64",
Platform::WindowsX86 => "server-win32",
Platform::WindowsARM64 => "server-win32-arm64",
Platform::WindowsARM64 => "server-win32-x64", // we don't publish an arm64 server build yet
}
.to_owned()
}