diff options
| author | Brandon Keiji <[email protected]> | 2025-04-23 22:00:40 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-23 15:00:40 -0700 |
| commit | 7f3798e180db8d56fd45002ca61331e305a36a41 (patch) | |
| tree | e019beab778f921439f15d93ec11cc0104d18d2b /scripts/start.sh | |
| parent | 60bee4b13750cc2bd1109612a13bc1a58b98a94d (diff) | |
feat: add CLI version number to footer (#134)
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 03c52c79..b4d24e42 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 --inspect-brk node_modules/@gemini-code/cli "$@" + NODE_ENV='development' node --inspect-brk node_modules/@gemini-code/cli "$@" else - node node_modules/@gemini-code/cli "$@" + NODE_ENV='development' node node_modules/@gemini-code/cli "$@" fi fi
\ No newline at end of file |
