From 43bb4a6b5eff2a6b20456590d34e795dc8d01ee4 Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:34:14 +0000 Subject: [PATCH] acp: Fix download path for Codex on ARM Windows (#44395) (cherry-pick to preview) (#44401) Cherry-pick of #44395 to preview ---- Both windows paths use .zip, not .tar.gz Closes #44378 Release Notes: - acp: Fix codex-acp download path for ARM Windows targets Co-authored-by: Ben Brandt --- crates/project/src/agent_server_store.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/project/src/agent_server_store.rs b/crates/project/src/agent_server_store.rs index 95afdd09c15b9970d7eb637e6df99502d3bc3b67..c12bf9aa9c2eae41a7d5ce87c0bfec3f47889f28 100644 --- a/crates/project/src/agent_server_store.rs +++ b/crates/project/src/agent_server_store.rs @@ -1501,8 +1501,8 @@ fn get_platform_info() -> Option<(&'static str, &'static str, &'static str)> { return None; }; - // Only Windows x86_64 uses .zip in release assets - let ext = if cfg!(target_os = "windows") && cfg!(target_arch = "x86_64") { + // Windows uses .zip in release assets + let ext = if cfg!(target_os = "windows") { "zip" } else { "tar.gz"