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 50ca47bdd4
commit e2ae6cef9d
2 changed files with 1 additions and 31 deletions
-7
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) => {