From b8aea2340d47507f7edd8a296ac6397c1d230964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Vecdi=20G=C3=B6n=C3=BCl?= <131407117+mvecdigonul@users.noreply.github.com> Date: Thu, 17 Apr 2025 02:07:44 +0200 Subject: [PATCH] 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. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fb92043..ee96093a 100644 --- a/README.md +++ b/README.md @@ -228,9 +228,12 @@ cd codex/codex-cli npm install npm run build -# Run the locally‑built CLI directly +# Get the usage and the options node ./dist/cli.js --help +# Run the locally‑built CLI directly +node ./dist/cli.js + # Or link the command globally for convenience npm link ```