From 0d08aa65d2b47a5deda8da5d80956708d058c6b8 Mon Sep 17 00:00:00 2001 From: iceweasel-oai Date: Thu, 23 Apr 2026 14:48:23 -0700 Subject: [PATCH] do not attempt ACLs on installed dir --- codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs b/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs index 3774ab729537..8c334000ec51 100644 --- a/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs +++ b/codex-rs/windows-sandbox-rs/src/setup_orchestrator.rs @@ -345,16 +345,9 @@ fn profile_read_roots(user_profile: &Path) -> Vec { } fn gather_helper_read_roots(codex_home: &Path) -> Vec { - let mut roots = Vec::new(); - if let Ok(exe) = std::env::current_exe() - && let Some(dir) = exe.parent() - { - roots.push(dir.to_path_buf()); - } let helper_dir = helper_bin_dir(codex_home); let _ = std::fs::create_dir_all(&helper_dir); - roots.push(helper_dir); - roots + vec![helper_dir] } fn gather_legacy_full_read_roots(