(command: string, args: string[], options: ExecutionOptions)
| 652 | } |
| 653 | |
| 654 | async function executeNone(command: string, args: string[], options: ExecutionOptions) { |
| 655 | if (needsWine(command)) { |
| 656 | return await executeWineDirect(command, args, options); |
| 657 | } |
| 658 | return await executeDirect(command, args, options); |
| 659 | } |
| 660 | |
| 661 | type DispatchFunction = (command: string, args: string[], options: ExecutionOptions) => Promise<UnprocessedExecResult>; |
| 662 |
nothing calls this directly
no test coverage detected