(
cmd: string,
args: string[],
options: ExecStreamOptions = {},
)
| 100 | } |
| 101 | |
| 102 | export async function runCmdStreaming( |
| 103 | cmd: string, |
| 104 | args: string[], |
| 105 | options: ExecStreamOptions = {}, |
| 106 | ): Promise<ExecResult> { |
| 107 | const overrideResult = commandExecutorOverrideScope.getStore()?.(cmd, args, options); |
| 108 | if (overrideResult) return await overrideResult; |
| 109 | return await runSpawnedCommand(cmd, args, options); |
| 110 | } |
| 111 | |
| 112 | function runSpawnedCommand( |
| 113 | cmd: string, |
no test coverage detected