From b1b8ba4b986e40ae089054691f336a4090e72981 Mon Sep 17 00:00:00 2001 From: Markus Kohlhase Date: Tue, 23 Jan 2018 14:07:14 +0100 Subject: [PATCH] fix(doc): make installation from git work again (#570) cargo install --git https://github.com/rust-lang-nursery/mdBook.git leads to error: multiple packages with binaries found: mdbook, mdbook-wordcount Fix: append name of binary (`mdbook`). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10a995b2..bb53783f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ j the git version of mdBook yourself. Cargo makes this ***super easy***! ``` - cargo install --git https://github.com/rust-lang-nursery/mdBook.git + cargo install --git https://github.com/rust-lang-nursery/mdBook.git mdbook ``` Again, make sure to add the Cargo bin directory to your `PATH`.