From 8958ea6514e54dbdb7104455127f78c1716786fb Mon Sep 17 00:00:00 2001 From: Castor Gemini Date: Sun, 24 Aug 2025 01:29:38 -0500 Subject: Refactor: Update hardcoded "gemini" command to "regex" --- packages/cli/src/ui/hooks/shellCommandProcessor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/cli/src/ui/hooks/shellCommandProcessor.ts') diff --git a/packages/cli/src/ui/hooks/shellCommandProcessor.ts b/packages/cli/src/ui/hooks/shellCommandProcessor.ts index 695a3d3c..f675dc76 100644 --- a/packages/cli/src/ui/hooks/shellCommandProcessor.ts +++ b/packages/cli/src/ui/hooks/shellCommandProcessor.ts @@ -237,7 +237,7 @@ export const useShellCommandProcessor = ( if (err) { onDebugMessage(`Failed to write shell output to ${outputFilePath}: ${err.message}`); } else { - const geminiCommand = `gemini --input ${outputFilePath}`; + const geminiCommand = `regex --input ${outputFilePath}`; exec(geminiCommand, (error) => { if (error) { onDebugMessage(`Failed to execute gemini command: ${error.message}`); -- cgit v1.2.3