MCPcopy Index your code
hub / github.com/continuedev/continue / updateProcessOutput

Function updateProcessOutput

core/util/processTerminalStates.ts:59–64  ·  view source on GitHub ↗
(toolCallId: string, output: string)

Source from the content-addressed store, hash-verified

57}
58
59export function updateProcessOutput(toolCallId: string, output: string): void {
60 const info = processTerminalForegroundStates.get(toolCallId);
61 if (info) {
62 info.currentOutput = output;
63 }
64}
65
66export function removeRunningProcess(toolCallId: string): void {
67 processTerminalForegroundStates.delete(toolCallId);

Callers 2

runTerminalCommandImplFunction · 0.90

Calls 1

getMethod · 0.65

Tested by

no test coverage detected