From 162f25a0c6b817a1d86b2452d274398670933e34 Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Thu, 16 May 2024 08:32:02 +0800 Subject: [PATCH] fix: binary name in the readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a96d2b76..b5dfdc6f2 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ You can either build from source with: cargo build --release ``` -Once the binary is built, you can find it on `./target/release/miden-client`. +Once the binary is built, you can find it on `./target/release/miden`. Or you can install the CLI from crates-io with: @@ -62,6 +62,8 @@ Or you can install the CLI from crates-io with: cargo install miden-client ``` +Note that binary name for the client is just `miden`. + ### Makefile As mentioned before, we use [cargo-make](https://github.com/sagiegurari/cargo-make) to encapsulate some tasks, such as running lints and tests. You can check out [Makefile.toml](./Makefile.toml) for all available tasks.