From 29be2899e301e881b6adb1396ec989f0bd806a33 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Fri, 5 Feb 2016 13:48:53 +0100 Subject: [PATCH] Gitter in README. Fix installation guide. --- README.md | 4 +++- install-deps.sh | 7 +++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c223921f1..dc0498d26 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # ethcore -[![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] +[![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Join the chat at https://gitter.im/trogdoro/xiki][gitter-image]][gitter-url] [travis-image]: https://travis-ci.com/ethcore/parity.svg?token=DMFvZu71iaTbUYx9UypX&branch=master [travis-url]: https://travis-ci.com/ethcore/parity [coveralls-image]: https://coveralls.io/repos/github/ethcore/parity/badge.svg?branch=master&t=Fk0OuQ [coveralls-url]: https://coveralls.io/r/ethcore/parity?branch=master +[gitter-image]: https://badges.gitter.im/Join%20Chat.svg +[gitter-url]: https://gitter.im/ethcore/parity?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge ### Building from source diff --git a/install-deps.sh b/install-deps.sh index d03098c42..15fdc838c 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -628,12 +628,11 @@ function run_installer() info "Building..." cargo build --release - cd .. echo - head "Parity is built!" - info "Parity source code is in ${b}$(pwd)/parity${reset}. From that path, you can:" + successHeading "Parity is built!" + info "Parity source code is in ${b}$(pwd)/parity${reset}. From there, you can:" info "- Run a client & sync the chain with:" info " ${b}cargo run --release${reset}" info "- Run a JSONRPC-capable client (for use with netstats) with:" @@ -641,7 +640,7 @@ function run_installer() info "- Run tests with:" info " ${b}cargo test --release --features ethcore/json-tests -p ethcore${reset}" info "- Install the client with:" - info " ${b}sudo cp target/release/parity /usr/bin${reset}" + info " ${b}sudo cp parity/target/release/parity${reset}" echo }