Remove warnings for old env var names. (#920)

This commit is contained in:
Tommaso Sciortino
2025-06-10 18:34:36 -07:00
committed by GitHub
parent e92b7dfd74
commit 97e08fc804
2 changed files with 1 additions and 31 deletions

View File

@@ -63,13 +63,6 @@ if (!geminiSandbox) {
geminiSandbox = process.env.GEMINI_SANDBOX;
}
if (process.env.GEMINI_CODE_SANDBOX) {
console.warn(
'WARNING: GEMINI_CODE_SANDBOX is deprecated. Use GEMINI_SANDBOX instead.',
);
geminiSandbox = process.env.GEMINI_CODE_SANDBOX;
}
geminiSandbox = (geminiSandbox || '').toLowerCase();
const commandExists = (cmd) => {