mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-09 00:16:57 -07:00
chore(deps): pin dependencies and enforce 14-day update cooldown (#27948)
This commit is contained in:
@@ -445,12 +445,10 @@ export class ExecutionLifecycleService {
|
||||
return;
|
||||
}
|
||||
|
||||
const {
|
||||
error = null,
|
||||
aborted = false,
|
||||
exitCode = error ? 1 : 0,
|
||||
signal = null,
|
||||
} = options ?? {};
|
||||
const error = options?.error ?? null;
|
||||
const aborted = options?.aborted ?? false;
|
||||
const exitCode = options?.exitCode ?? (error ? 1 : 0);
|
||||
const signal = options?.signal ?? null;
|
||||
|
||||
const output = execution.getBackgroundOutput?.() ?? execution.output;
|
||||
const snapshot = execution.getSubscriptionSnapshot?.();
|
||||
|
||||
Reference in New Issue
Block a user