From 4a7adb6667674cb4837539ea3dfada1ea155d6a4 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Fri, 20 Jan 2023 11:13:22 -0800 Subject: [PATCH] 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. --- cli/src/update_service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/update_service.rs b/cli/src/update_service.rs index f9e102f2962..ee37c8ac993 100644 --- a/cli/src/update_service.rs +++ b/cli/src/update_service.rs @@ -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() }