From 4a2933b0b6ccda6ab03e76924835f41e555700c1 Mon Sep 17 00:00:00 2001 From: jackcmay Date: Fri, 14 Dec 2018 15:55:16 -0800 Subject: [PATCH] Update README.md --- book/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/book/README.md b/book/README.md index 44ac624950..f7aa8bb762 100644 --- a/book/README.md +++ b/book/README.md @@ -1,26 +1,26 @@ Building the Solana book --- -Install mdbook: +Install the book's dependnecies, build, and test the book: ```bash -cargo install mdbook +$ ./build.sh ``` Run any Rust tests in the markdown: ```bash -make test +$ make test ``` Render markdown as HTML: ```bash -make build +$ make build ``` Render and view the book: ```bash -make open +$ make open ```