diff options
| author | Mot <[email protected]> | 2025-06-27 19:03:20 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-28 02:03:20 +0000 |
| commit | ad7839ea4c6484485678049e8539f109304582fb (patch) | |
| tree | 83a0247c8b892e4692e50b25d0c5f0e3b8694985 /scripts/sandbox_command.js | |
| parent | 2e20effb43657de3944091f164f9fbd72b4b2977 (diff) | |
quiet dotenv log message (#2239)
Co-authored-by: Scott Densmore <[email protected]>
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); |
