| 8 | import { delimiter, dirname, isAbsolute, join, normalize, resolve } from "node:path"; |
| 9 | |
| 10 | export interface CodexSpawnInvocation { |
| 11 | command: string; |
| 12 | args: string[]; |
| 13 | windowsVerbatimArguments?: boolean; |
| 14 | } |
| 15 | |
| 16 | const windowsExecutablePattern = /\.(?:com|exe)$/i; |
| 17 | const windowsBatchLauncherPattern = /\.(?:bat|cmd)$/i; |
nothing calls this directly
no outgoing calls
no test coverage detected