quiet dotenv log message (#2239)

Co-authored-by: Scott Densmore <scottdensmore@mac.com>
This commit is contained in:
Mot
2025-06-27 19:03:20 -07:00
committed by GitHub
parent 2e20effb43
commit ad7839ea4c
5 changed files with 10 additions and 10 deletions

View File

@@ -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);