| 171 | |
| 172 | export function runWrapper(executable: string, cliArguments: string[]): number { |
| 173 | interface SpawnError extends Error { |
| 174 | errno: number; |
| 175 | code: string; |
| 176 | syscall: string; |
| 177 | path: string; |
| 178 | spawnargs: string[]; |
| 179 | } |
| 180 | |
| 181 | const debug = debugEnabled(cliArguments); |
| 182 |
nothing calls this directly
no outgoing calls
no test coverage detected