diff options
| author | Brandon Keiji <[email protected]> | 2025-04-23 22:49:18 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-23 15:49:18 -0700 |
| commit | 94c04955c8fda4fcb94b985bd3a5ec013bcdd4f5 (patch) | |
| tree | 36af831fc0f8dcb784fa05476b983239f92821f8 /scripts/start.sh | |
| parent | 72d0b73598c9debb8c22f0421f73fcc6549f2905 (diff) | |
fix: use process.env.CLI_VERSION to avoid conflicts with NODE_ENV (#139)
Diffstat (limited to 'scripts/start.sh')
| -rwxr-xr-x | scripts/start.sh | 4 |
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 |
