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`).
This commit is contained in:
Markus Kohlhase 2018-01-23 14:07:14 +01:00 committed by Michael Bryan
parent 0531b585e4
commit b1b8ba4b98
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ j
the git version of mdBook yourself. Cargo makes this ***super easy***! 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`. Again, make sure to add the Cargo bin directory to your `PATH`.