From 2b5db26b0803ab3c1d5445806a4b693a6707949f Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Wed, 25 Feb 2026 01:11:41 -0500 Subject: [PATCH] Broaden Windows asset detection to all architectures Previously only `x86_64` Windows used zip archives, but ARM64 Windows builds also use ZIP format. --- crates/project/src/agent_server_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/project/src/agent_server_store.rs b/crates/project/src/agent_server_store.rs index 3dcbab8bafb470..958c422dc70bd5 100644 --- a/crates/project/src/agent_server_store.rs +++ b/crates/project/src/agent_server_store.rs @@ -1615,7 +1615,7 @@ impl ExternalAgentServer for LocalCodex { &asset.browser_download_url, digest, &version_dir, - if cfg!(target_os = "windows") && cfg!(target_arch = "x86_64") { + if cfg!(target_os = "windows") { AssetKind::Zip } else { AssetKind::TarGz