(shellCommand: ShellCommand)
| 513 | cleanupFn?.(); |
| 514 | } |
| 515 | async function flushAndCleanup(shellCommand: ShellCommand): Promise<void> { |
| 516 | try { |
| 517 | await shellCommand.taskOutput.flush(); |
| 518 | shellCommand.cleanup(); |
| 519 | } catch (error) { |
| 520 | logError(error); |
| 521 | } |
| 522 | } |
no test coverage detected