From 1d4b5f130c772ad04bc0ee6c25403f74e56e98fc Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 3 Apr 2026 14:00:24 -0700 Subject: [PATCH] fix windows-only clippy lint violation (#16722) I missed this in https://github.com/openai/codex/pull/16707. --- codex-rs/core/src/exec_env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/exec_env.rs b/codex-rs/core/src/exec_env.rs index 3feb531ea..a50fcc253 100644 --- a/codex-rs/core/src/exec_env.rs +++ b/codex-rs/core/src/exec_env.rs @@ -56,7 +56,7 @@ where const COMMON_CORE_VARS: &[&str] = &["PATH", "SHELL", "TMPDIR", "TEMP", "TMP"]; #[cfg(target_os = "windows")] -const PLATFORM_CORE_VARS: &[&str] = { &["PATHEXT", "USERNAME", "USERPROFILE"] }; +const PLATFORM_CORE_VARS: &[&str] = &["PATHEXT", "USERNAME", "USERPROFILE"]; #[cfg(unix)] const PLATFORM_CORE_VARS: &[&str] = &["HOME", "LANG", "LC_ALL", "LC_CTYPE", "LOGNAME", "USER"];