diff options
Diffstat (limited to 'scripts/sandbox_command.js')
| -rw-r--r-- | scripts/sandbox_command.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sandbox_command.js b/scripts/sandbox_command.js index a469c81a..774018a9 100644 --- a/scripts/sandbox_command.js +++ b/scripts/sandbox_command.js @@ -52,10 +52,10 @@ if (!geminiSandbox) { const geminiEnv = join(currentDir, '.gemini', '.env'); const regularEnv = join(currentDir, '.env'); if (existsSync(geminiEnv)) { - dotenv.config({ path: geminiEnv }); + dotenv.config({ path: geminiEnv, quiet: true }); break; } else if (existsSync(regularEnv)) { - dotenv.config({ path: regularEnv }); + dotenv.config({ path: regularEnv, quiet: true }); break; } currentDir = dirname(currentDir); |
