diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-27 18:36:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-27 18:36:10 +0800 |
commit | 2c2361e62d07a2ae0a7918e906a2bcbc0756320a (patch) | |
tree | 360b95b35cb01e4cd9d06d5535ca2e7b0b0629c3 | |
parent | 60c1b59a97379753889b693460ada18b45d2beea (diff) | |
download | tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.gz tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.tar.zst tangerine-consensus-2c2361e62d07a2ae0a7918e906a2bcbc0756320a.zip |
misc: Update README.md (#344)
-rw-r--r-- | README.md | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -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 |