( executable: string, cmd: string, args: string[], cause: Error, )
| 524 | } |
| 525 | |
| 526 | function createCommandFailedError( |
| 527 | executable: string, |
| 528 | cmd: string, |
| 529 | args: string[], |
| 530 | cause: Error, |
| 531 | ): AppError { |
| 532 | return new AppError('COMMAND_FAILED', `Failed to run ${executable}`, { cmd, args }, cause); |
| 533 | } |
| 534 | |
| 535 | function createStdinError( |
| 536 | executable: string, |
no outgoing calls
no test coverage detected