aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-11-27 18:36:10 +0800
committerGitHub <noreply@github.com>2018-11-27 18:36:10 +0800
commit2c2361e62d07a2ae0a7918e906a2bcbc0756320a (patch)
tree360b95b35cb01e4cd9d06d5535ca2e7b0b0629c3
parent60c1b59a97379753889b693460ada18b45d2beea (diff)
downloadtangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar
tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.gz
tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.bz2
tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.lz
tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.xz
tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.zst
tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.zip
misc: Update README.md (#344)
-rw-r--r--README.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/README.md b/README.md
index 315cc06..88e35f4 100644
--- a/README.md
+++ b/README.md
@@ -17,22 +17,23 @@ DEXON Consensus
cd dexon-consensus
```
-2. Install go dependency management tool
+2. Setup GOPATH, the GOPATH could be anywhere in the system. Here we use `$HOME/go`:
```
- ./bin/install_tools.sh
+ export GOPATH=$HOME/go
+ export PATH=$GOPATH/bin:$PATH
```
+ You should write these settings to your `.bashrc` file.
+
-3. Install all dependencies
+3. Install go dependency management tool
```
- dep ensure
+ ./bin/install_tools.sh
```
-4. Setup GOAPTH, the GOPATH could be anywhere in the system. Here we use `$HOME/go`:
+4. Install all dependencies
```
- export GOPATH=$HOME/go
- export PATH=$GOPATH/bin:$PATH
+ dep ensure
```
- You should write these settings to your `.bashrc` file.
### Run Unit Tests