diff options
| author | Tommaso Sciortino <[email protected]> | 2025-06-10 18:34:36 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-10 18:34:36 -0700 |
| commit | 97e08fc804a8272ff546436cc38d8a20165513cd (patch) | |
| tree | 7f1eebee7512d82014791aa066c1c803eda68d1e /scripts | |
| parent | e92b7dfd7437eda97eee401177d1856094283f2b (diff) | |
Remove warnings for old env var names. (#920)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/sandbox_command.js | 7 |
1 files changed, 0 insertions, 7 deletions
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) => { |
