fix windows-only clippy lint violation (#16722)

I missed this in https://github.com/openai/codex/pull/16707.
This commit is contained in:
Michael Bolin
2026-04-03 14:00:24 -07:00
committed by GitHub
parent dc07108af8
commit 1d4b5f130c

View File

@@ -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"];