Refactor: Update hardcoded "gemini" command to "regex"

This commit is contained in:
Castor Gemini 2025-08-24 01:29:38 -05:00 committed by Jeff Carr
parent aa805c9c70
commit 8958ea6514
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ ${reason.stack}`
export async function main() {
if (!process.env['SANDBOX']) {
console.log("gemini --output 'startup'");
console.log("regex --output 'startup'");
}
setupUnhandledRejectionHandler();
const workspaceRoot = process.cwd();

View File

@ -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}`);