From 9135c952d3a43ddcb02e03e748c2158a21f1390e Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Mon, 14 Jul 2025 14:29:27 -0400 Subject: [PATCH] Tweaks to command timeout error --- src/core/tools/executeCommandTool.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/core/tools/executeCommandTool.ts b/src/core/tools/executeCommandTool.ts index ebe07776982..407dc283b50 100644 --- a/src/core/tools/executeCommandTool.ts +++ b/src/core/tools/executeCommandTool.ts @@ -252,7 +252,10 @@ export async function executeCommand( clineProvider?.postMessageToWebview({ type: "commandExecutionStatus", text: JSON.stringify(status) }) // Add visual feedback for timeout - await cline.say("text", t("common:command_timeout", { seconds: commandExecutionTimeoutSeconds })) + await cline.say( + "error", + t("common:errors:command_timeout", { seconds: commandExecutionTimeoutSeconds }), + ) cline.terminalProcess = undefined