feat: add CLI version number to footer (#134)

This commit is contained in:
Brandon Keiji
2025-04-23 22:00:40 +00:00
committed by GitHub
parent 60bee4b137
commit 7f3798e180
6 changed files with 227 additions and 5 deletions

View File

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