From e32ca3fbd67863904133898db575671f85c5e232 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 27 Feb 2022 23:53:47 -0500 Subject: [PATCH] fix readme build instructions --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 12dbb3f..af58db6 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ git clone https://git.hush.is/hush/SilentDragonPaper Then choose one of these two source compilation options to build the SilentDragonPaper CLI. #### Option 1: Compile using system installed rust -SilentDragonPaper is built with rust. To compile from source, you [install Rust](https://www.rust-lang.org/tools/install). +SilentDragonPaper is built with Rust. To compile from source, you must [install Rust 1.48](https://www.rust-lang.org/tools/install). ``` cd SilentDragonPaper/cli @@ -46,10 +46,11 @@ cargo build --release ``` #### Option 2: Compile using "embedded" rust -Here we do not need a system installed rust to compile. The build.sh script pulls Rust version 1.48 down for us and builds with it. + +Here we do not need a system installed Rust to compile. The build.sh script pulls Rust version 1.48 down for us and builds with it. ``` -cd SilentDragonPaper/cli +cd SilentDragonPaper ./build.sh ```