From ad7839ea4c6484485678049e8539f109304582fb Mon Sep 17 00:00:00 2001 From: Mot Date: Fri, 27 Jun 2025 19:03:20 -0700 Subject: quiet dotenv log message (#2239) Co-authored-by: Scott Densmore --- scripts/sandbox_command.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/sandbox_command.js') 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); -- cgit v1.2.3