Files
codex/codex-rs/patch.txt
2025-11-13 00:26:07 -08:00

12 lines
290 B
Plaintext

*** Begin Patch
*** Update File: core\tests\suite\unified_exec.rs
@@
fn current_dir_command() -> String {
if cfg!(target_os = "windows") {
- "[Environment]::CurrentDirectory".to_string()
+ "cd".to_string()
} else {
"pwd".to_string()
}
}
*** End Patch