We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a7147c commit 224c366Copy full SHA for 224c366
src/core/tools/executeCommandTool.ts
@@ -250,6 +250,9 @@ export async function executeCommand(
250
const status: CommandExecutionStatus = { executionId, status: "timeout" }
251
clineProvider?.postMessageToWebview({ type: "commandExecutionStatus", text: JSON.stringify(status) })
252
253
+ // Add visual feedback for timeout
254
+ await cline.say("text", `Command execution timed out after ${commandExecutionTimeoutSeconds} seconds`)
255
+
256
cline.terminalProcess = undefined
257
258
return [
0 commit comments