summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Troisi <[email protected]>2025-04-24 00:55:17 +0000
committerSeth Troisi <[email protected]>2025-04-23 17:57:01 -0700
commit09fabe3021fdfecf821e85e2a09cc29f0aced69a (patch)
treeaa7c381c3f6c3be16efa109957a5e1395273b27a
parentcf92ffab346b3844ed3922f5647bd03170d3e448 (diff)
Remove `--workspace` npm run debug command in README
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7e692a96..1aee9c27 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ To debug the CLI application using VS Code:
1. Start the CLI in debug mode from the root directory:
```bash
- npm run debug --workspace=gemini-code-cli
+ npm run debug
```
This command runs `node --inspect-brk dist/gemini.js` within the `packages/cli` directory, pausing execution until a debugger attaches.
2. In VS Code, use the "Attach" launch configuration (found in `.vscode/launch.json`). This configuration is set up to attach to the Node.js process listening on port 9229, which is the default port used by `--inspect-brk`.