(executable: string, cmd: string, cause: Error)
| 520 | } |
| 521 | |
| 522 | function createMissingToolError(executable: string, cmd: string, cause: Error): AppError { |
| 523 | return new AppError('TOOL_MISSING', `${executable} not found in PATH`, { cmd }, cause); |
| 524 | } |
| 525 | |
| 526 | function createCommandFailedError( |
| 527 | executable: string, |
no outgoing calls
no test coverage detected