Skip to content

Commit f0a55f5

Browse files
committed
fix: update codex binary names for consistency
Renamed codex binaries in the sync script to include architecture and platform details for clarity and consistency across different operating systems.
1 parent 1723d0a commit f0a55f5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

scripts/sync-ai-app-oss.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -418,12 +418,12 @@ config = {
418418
("win32-x64", "opencode-windows-x64-baseline.zip", "zip", "opencode.exe"),
419419
],
420420
"codex": [
421-
("darwin-arm64", "codex-aarch64-apple-darwin.tar.gz", "tar.gz", "codex"),
422-
("darwin-x64", "codex-x86_64-apple-darwin.tar.gz", "tar.gz", "codex"),
423-
("linux-arm64", "codex-aarch64-unknown-linux-musl.tar.gz", "tar.gz", "codex"),
424-
("linux-x64", "codex-x86_64-unknown-linux-musl.tar.gz", "tar.gz", "codex"),
425-
("win32-arm64", "codex-aarch64-pc-windows-msvc.exe.zip", "zip", "codex.exe"),
426-
("win32-x64", "codex-x86_64-pc-windows-msvc.exe.zip", "zip", "codex.exe"),
421+
("darwin-arm64", "codex-aarch64-apple-darwin.tar.gz", "tar.gz", "codex-aarch64-apple-darwin"),
422+
("darwin-x64", "codex-x86_64-apple-darwin.tar.gz", "tar.gz", "codex-x86_64-apple-darwin"),
423+
("linux-arm64", "codex-aarch64-unknown-linux-musl.tar.gz", "tar.gz", "codex-aarch64-unknown-linux-musl"),
424+
("linux-x64", "codex-x86_64-unknown-linux-musl.tar.gz", "tar.gz", "codex-x86_64-unknown-linux-musl"),
425+
("win32-arm64", "codex-aarch64-pc-windows-msvc.exe.zip", "zip", "codex-aarch64-pc-windows-msvc.exe"),
426+
("win32-x64", "codex-x86_64-pc-windows-msvc.exe.zip", "zip", "codex-x86_64-pc-windows-msvc.exe"),
427427
],
428428
}
429429

0 commit comments

Comments
 (0)