From 97e08fc804a8272ff546436cc38d8a20165513cd Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Tue, 10 Jun 2025 18:34:36 -0700 Subject: Remove warnings for old env var names. (#920) --- scripts/sandbox_command.js | 7 ------- 1 file changed, 7 deletions(-) (limited to 'scripts/sandbox_command.js') diff --git a/scripts/sandbox_command.js b/scripts/sandbox_command.js index d115f97f..a469c81a 100644 --- a/scripts/sandbox_command.js +++ b/scripts/sandbox_command.js @@ -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) => { -- cgit v1.2.3