minor change in description of Build from source in README.md (#149)

Separated the `node ./dist/cli.js --help ` and `node ./dist/cli.js `.
The comment suggested `node ./dist/cli.js --help ` was to run the
locally-built CLI but in fact it shows the usage an options. It is a
minor change and clarifies the flow for new developers.
This commit is contained in:
Mehmet Vecdi Gönül
2025-04-17 02:07:44 +02:00
committed by GitHub
parent 099224e313
commit b8aea2340d

View File

@@ -228,9 +228,12 @@ cd codex/codex-cli
npm install
npm run build
# Run the locallybuilt CLI directly
# Get the usage and the options
node ./dist/cli.js --help
# Run the locallybuilt CLI directly
node ./dist/cli.js
# Or link the command globally for convenience
npm link
```