summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/start.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/start.sh b/scripts/start.sh
index f2b266f4..b6b94085 100755
--- a/scripts/start.sh
+++ b/scripts/start.sh
@@ -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 npm run debug --workspace=@gemini-code/cli -- "$@"
+ CLI_VERSION='development' DEV=true node --inspect-brk ./packages/cli "$@"
else
- CLI_VERSION='development' DEV=true npm run start --workspace=@gemini-code/cli -- "$@"
+ CLI_VERSION='development' DEV=true node ./packages/cli "$@"
fi
fi \ No newline at end of file