mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-17 01:21:10 -07:00
Update error codes when process exiting the gemini cli (#13728)
This commit is contained in:
13
packages/core/src/utils/exitCodes.ts
Normal file
13
packages/core/src/utils/exitCodes.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2025 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
export const ExitCodes = {
|
||||
SUCCESS: 0,
|
||||
FATAL_AUTHENTICATION_ERROR: 41,
|
||||
FATAL_INPUT_ERROR: 42,
|
||||
FATAL_CONFIG_ERROR: 52,
|
||||
FATAL_CANCELLATION_ERROR: 130,
|
||||
} as const;
|
||||
Reference in New Issue
Block a user