(fn: () => Promise<T>)
| 86 | |
| 87 | // Used by local executors to bypass the active override for intentional host command execution. |
| 88 | export async function withoutCommandExecutorOverride<T>(fn: () => Promise<T>): Promise<T> { |
| 89 | return await commandExecutorOverrideScope.run(undefined, fn); |
| 90 | } |
| 91 | |
| 92 | export async function runCmd( |
| 93 | cmd: string, |
no outgoing calls
no test coverage detected