From 973c6ef9c180a1328cf4e904170e8ec0904d5d93 Mon Sep 17 00:00:00 2001 From: Santiago Pittella <87827390+SantiagoPittella@users.noreply.github.com> Date: Wed, 25 Sep 2024 03:52:10 -0300 Subject: [PATCH] docs: fix readme removing --path option from installing command (#505) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6067d32b..614e749d 100644 --- a/README.md +++ b/README.md @@ -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 +cargo install --locked --git https://github.com/0xPolygonMiden/miden-node miden-node --branch # Install a specific tag -cargo install --locked --path bin/miden --git https://github.com/0xPolygonMiden/miden-node --tag +cargo install --locked --git https://github.com/0xPolygonMiden/miden-node miden-node --tag # Install a specific git revision -cargo install --locked --path bin/miden --git https://github.com/0xPolygonMiden/miden-node --rev +cargo install --locked --git https://github.com/0xPolygonMiden/miden-node miden-node --rev ``` More information on the various options can be found [here](https://doc.rust-lang.org/cargo/commands/cargo-install.html#install-options).