mirror of
https://github.com/openai/codex.git
synced 2026-05-28 15:00:16 +00:00
12 lines
290 B
Plaintext
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 |