From 58948c53ff8f445b711e95f0684019d597ed9ace Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Tue, 14 Jun 2016 19:36:14 +0200 Subject: [PATCH 1/4] clarify windows instructions [ci skip] --- README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f807be3a4..11f76acdd 100644 --- a/README.md +++ b/README.md @@ -49,14 +49,13 @@ $ curl https://sh.rustup.rs -sSf | sh - Windows -Make sure you have Visual Studio 2015 with C++ support installed, download and run [rustup](https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe) and use the following command to setup msvc toolchain: + Make sure you have Visual Studio 2015 with C++ support installed. Next, use the following commands to install and set up the msvc toolchain: + ``` + $ rustup toolchain install stable-x86_64-pc-windows-msvc + $ rustup default stable-x86_64-pc-windows-msvc + ``` -``` -rustup default stable-x86_64-pc-windows-msvc -``` - - -Then, download and build Parity: +Once you have rustup, download and build parity: ```bash # download Parity code @@ -68,11 +67,11 @@ $ cargo build --release ``` This will produce an executable in the `target/release` subdirectory. -Either run `cd target/release`, or copy `target/release/parity` to another location. +Either run `cd target/release` or copy `target/release/parity` to another location. To get started, just run ```bash $ parity ``` -and parity will begin syncing the Ethereum blockchain. +and parity will begin syncing the Ethereum blockchain. \ No newline at end of file From 44ed899fb388adce765c64064213a6fac855f424 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Wed, 15 Jun 2016 01:16:10 +0200 Subject: [PATCH 2/4] address comments [ci skip] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 11f76acdd..ff729a3b7 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ $ curl https://sh.rustup.rs -sSf | sh - Windows - Make sure you have Visual Studio 2015 with C++ support installed. Next, use the following commands to install and set up the msvc toolchain: + Make sure you have Visual Studio 2015 with C++ support installed. Next, download and run the rustup installer from + https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe and use the following command to install and set up the msvc toolchain: ``` - $ rustup toolchain install stable-x86_64-pc-windows-msvc $ rustup default stable-x86_64-pc-windows-msvc ``` From 3d86d099bbc084c2c8ffdfdb182f2605717ccd2f Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Wed, 15 Jun 2016 12:22:26 +0200 Subject: [PATCH 3/4] remove either/or commands, keep it simple [ci skip] --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ff729a3b7..27087b6a4 100644 --- a/README.md +++ b/README.md @@ -66,12 +66,11 @@ $ cd parity $ cargo build --release ``` -This will produce an executable in the `target/release` subdirectory. -Either run `cd target/release` or copy `target/release/parity` to another location. +This will produce an executable in the `./target/release` subdirectory. To get started, just run ```bash -$ parity +$ ./target/release/parity ``` and parity will begin syncing the Ethereum blockchain. \ No newline at end of file From 2527130831af4ca4d3dbce68c6de19f52035ce7f Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Wed, 15 Jun 2016 12:45:52 +0200 Subject: [PATCH 4/4] indentation (renders the same) [ci skip] --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 27087b6a4..acd873b74 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,9 @@ Parity is fully compatible with Stable Rust. We recommend installing Rust through [rustup](https://www.rustup.rs/). If you don't already have rustup, you can install it like this: - Linux and OSX: -```bash -$ curl https://sh.rustup.rs -sSf | sh -``` + ```bash + $ curl https://sh.rustup.rs -sSf | sh + ``` - Windows