mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
33 lines
825 B
JavaScript
33 lines
825 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { main } from './src/gemini.js';
|
|
import { FatalError, writeToStderr } from '@google/gemini-cli-core';
|
|
import { runExitCleanup } from './src/utils/cleanup.js';
|
|
|
|
// --- Global Entry Point ---
|
|
main().catch(async (error) => {
|
|
await runExitCleanup();
|
|
|
|
if (error instanceof FatalError) {
|
|
let errorMessage = error.message;
|
|
if (!process.env['NO_COLOR']) {
|
|
errorMessage = `\x1b[31m${errorMessage}\x1b[0m`;
|
|
}
|
|
writeToStderr(errorMessage + '\n');
|
|
process.exit(error.exitCode);
|
|
}
|
|
writeToStderr('An unexpected critical error occurred:');
|
|
if (error instanceof Error) {
|
|
writeToStderr(error.stack + '\n');
|
|
} else {
|
|
writeToStderr(String(error) + '\n');
|
|
}
|
|
process.exit(1);
|
|
});
|