From cd2cb661a41960a48211fa103f69185cc1f94ea3 Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Sun, 27 Jul 2025 13:18:46 -0400 Subject: [PATCH] fix(docs): update cli path for install commands --- docs/src/6-contributing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/6-contributing.md b/docs/src/6-contributing.md index e53b85a1..920563db 100644 --- a/docs/src/6-contributing.md +++ b/docs/src/6-contributing.md @@ -45,7 +45,7 @@ This will create the `tree-sitter` CLI executable in the `target/release` folder If you want to automatically install the `tree-sitter` CLI in your system, you can run: ```sh -cargo install --path cli +cargo install --path crates/cli ``` If you're going to be in a fast iteration cycle and would like the CLI to build faster, you can use the `release-dev` profile: @@ -53,7 +53,7 @@ If you're going to be in a fast iteration cycle and would like the CLI to build ```sh cargo build --release --profile release-dev # or -cargo install --path cli --profile release-dev +cargo install --path crates/cli --profile release-dev ``` ### Testing