summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMot <[email protected]>2025-06-27 19:03:20 -0700
committerGitHub <[email protected]>2025-06-28 02:03:20 +0000
commitad7839ea4c6484485678049e8539f109304582fb (patch)
tree83a0247c8b892e4692e50b25d0c5f0e3b8694985 /scripts
parent2e20effb43657de3944091f164f9fbd72b4b2977 (diff)
quiet dotenv log message (#2239)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/sandbox_command.js4
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);