Skip to content

Commit 1187a7c

Browse files
authored
Tweaks to command timeout error (#5700)
1 parent 98fe2a1 commit 1187a7c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/core/tools/executeCommandTool.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,10 @@ export async function executeCommand(
252252
clineProvider?.postMessageToWebview({ type: "commandExecutionStatus", text: JSON.stringify(status) })
253253

254254
// Add visual feedback for timeout
255-
await cline.say("text", t("common:command_timeout", { seconds: commandExecutionTimeoutSeconds }))
255+
await cline.say(
256+
"error",
257+
t("common:errors:command_timeout", { seconds: commandExecutionTimeoutSeconds }),
258+
)
256259

257260
cline.terminalProcess = undefined
258261

0 commit comments

Comments
 (0)