From ca23b0da5b75e8f5638a95cfc3f3b6a8d12e9de7 Mon Sep 17 00:00:00 2001 From: zerone0x Date: Wed, 21 Jan 2026 06:53:14 +0800 Subject: [PATCH] fix(cli): add execute permission to bin/codex.js (#9532) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Fixes #9520 The `bin/codex.js` file was missing execute permissions (`644` instead of `755`), causing the `codex` command to fail after npm global installation. ## Changes - Added execute permission (`+x`) to `codex-cli/bin/codex.js` ## Verification After this fix, npm tarballs will include the correct file permissions: ```bash # Before: -rw-r--r-- (644) # After: -rwxr-xr-x (755) ``` --- 🤖 Generated with Claude Code Co-authored-by: Claude --- codex-cli/bin/codex.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 codex-cli/bin/codex.js diff --git a/codex-cli/bin/codex.js b/codex-cli/bin/codex.js old mode 100644 new mode 100755