summaryrefslogtreecommitdiff
path: root/scripts/start.sh
diff options
context:
space:
mode:
authorBrandon Keiji <[email protected]>2025-04-28 16:26:46 +0000
committerGitHub <[email protected]>2025-04-28 09:26:46 -0700
commit64910527deb760087eec26a85ef87adea403b167 (patch)
tree89b3bd2922473315e6b6cd03f1bf016f1e50bab7 /scripts/start.sh
parent491f8b28b4f53ddb763324964f38280c9a1221c3 (diff)
refactor: remove node_modules reference in start command (#198)
Diffstat (limited to 'scripts/start.sh')
-rwxr-xr-xscripts/start.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/start.sh b/scripts/start.sh
index c095b78e..f2b266f4 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 node --inspect-brk node_modules/@gemini-code/cli "$@"
+ CLI_VERSION='development' DEV=true npm run debug --workspace=@gemini-code/cli -- "$@"
else
- CLI_VERSION='development' DEV=true node node_modules/@gemini-code/cli "$@"
+ CLI_VERSION='development' DEV=true npm run start --workspace=@gemini-code/cli -- "$@"
fi
fi \ No newline at end of file