acp: Fix download path for Codex on ARM Windows (#44395)

Both windows paths use .zip, not .tar.gz

Closes #44378

Release Notes:

- acp: Fix codex-acp download path for ARM Windows targets
This commit is contained in:
Ben Brandt
2025-12-08 14:06:06 +00:00
committed by GitHub
parent bdba6fd069
commit 066dd5c9d5
+2 -2
View File
@@ -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"