(command: string)
| 74 | } |
| 75 | |
| 76 | function isPathLikeShell(command: string): boolean { |
| 77 | return command.includes("/") || command.includes("\\"); |
| 78 | } |
| 79 | |
| 80 | /** Resolve the Windows fallback shell command: prefer COMSPEC when valid, otherwise cmd.exe. */ |
| 81 | function getWindowsFallbackCommand( |
no outgoing calls
no test coverage detected