Skip to content

Commit

Permalink
docs: fix readme removing --path option from installing command (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiagoPittella authored Sep 25, 2024
1 parent 790751c commit 973c6ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ You can also use `cargo` to compile the node from the source code if for some re

```sh
# Install from a specific branch
cargo install --locked --path bin/miden --git https://github.com/0xPolygonMiden/miden-node --branch <branch>
cargo install --locked --git https://github.com/0xPolygonMiden/miden-node miden-node --branch <branch>

# Install a specific tag
cargo install --locked --path bin/miden --git https://github.com/0xPolygonMiden/miden-node --tag <tag>
cargo install --locked --git https://github.com/0xPolygonMiden/miden-node miden-node --tag <tag>

# Install a specific git revision
cargo install --locked --path bin/miden --git https://github.com/0xPolygonMiden/miden-node --rev <git-sha>
cargo install --locked --git https://github.com/0xPolygonMiden/miden-node miden-node --rev <git-sha>
```

More information on the various options can be found [here](https://doc.rust-lang.org/cargo/commands/cargo-install.html#install-options).
Expand Down

0 comments on commit 973c6ef

Please sign in to comment.