From e776fbb8d138cafab44b5c4cec58adfcdb63b8c7 Mon Sep 17 00:00:00 2001 From: jagadhis Date: Sat, 5 Sep 2026 15:07:42 +0530 Subject: [PATCH] Detect Bun-managed Codex CLI --- src-tauri/src/harness.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/src/harness.rs b/src-tauri/src/harness.rs index b61fa28e..a1eb8ec9 100644 --- a/src-tauri/src/harness.rs +++ b/src-tauri/src/harness.rs @@ -1229,6 +1229,7 @@ fn resolve_codex() -> Option { if let Some(home) = &home { candidates.push(home.join(".local/bin/codex")); + candidates.push(home.join(".bun/bin/codex")); candidates.push(home.join(".npm-global/bin/codex")); candidates.push(home.join(".cargo/bin/codex")); candidates.push(home.join("n/bin/codex"));