fix(docs): remove conflicting --release cargo flag in contributing.md

The argument '--release' cannot be used with '--profile <PROFILE-NAME>'
This commit is contained in:
skewb1k 2025-12-14 21:55:18 +03:00 committed by Christian Clason
parent 0574fcf256
commit 642b56d9af

View file

@ -51,7 +51,7 @@ 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:
```sh
cargo build --release --profile release-dev
cargo build --profile release-dev
# or
cargo install --path crates/cli --profile release-dev
```