summaryrefslogtreecommitdiff
path: root/scripts/start.sh
diff options
context:
space:
mode:
authorBrandon Keiji <[email protected]>2025-04-23 22:49:18 +0000
committerGitHub <[email protected]>2025-04-23 15:49:18 -0700
commit94c04955c8fda4fcb94b985bd3a5ec013bcdd4f5 (patch)
tree36af831fc0f8dcb784fa05476b983239f92821f8 /scripts/start.sh
parent72d0b73598c9debb8c22f0421f73fcc6549f2905 (diff)
fix: use process.env.CLI_VERSION to avoid conflicts with NODE_ENV (#139)
Diffstat (limited to 'scripts/start.sh')
-rwxr-xr-xscripts/start.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/start.sh b/scripts/start.sh
index b4d24e42..66025b86 100755
--- a/scripts/start.sh
+++ b/scripts/start.sh
@@ -24,8 +24,8 @@ if scripts/sandbox_command.sh -q; then
else
echo "WARNING: OUTSIDE SANDBOX. See README.md to enable sandboxing."
if [ -n "${DEBUG:-}" ]; then
- NODE_ENV='development' node --inspect-brk node_modules/@gemini-code/cli "$@"
+ CLI_VERSION='development' node --inspect-brk node_modules/@gemini-code/cli "$@"
else
- NODE_ENV='development' node node_modules/@gemini-code/cli "$@"
+ CLI_VERSION='development' node node_modules/@gemini-code/cli "$@"
fi
fi \ No newline at end of file