fix: revert pointing npm start to .bin (#144)

This commit is contained in:
Brandon Keiji 2025-04-24 01:21:07 +00:00 committed by GitHub
parent c24dc0ec77
commit 31045e6086
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ else
# DEV=true to enable React Dev Tools (https://github.com/vadimdemedes/ink?tab=readme-ov-file#using-react-devtools)
# CLI_VERSION to display in the app ui footer
if [ -n "${DEBUG:-}" ]; then
CLI_VERSION='development' DEV=true node --inspect-brk node_modules/.bin/gemini-code "$@"
CLI_VERSION='development' DEV=true node --inspect-brk node_modules/@gemini-code/cli "$@"
else
CLI_VERSION='development' DEV=true node node_modules/.bin/gemini-code "$@"
CLI_VERSION='development' DEV=true node node_modules/@gemini-code/cli "$@"
fi
fi