Update docs get_vendor_deps -> vendor-deps (#3402)

This commit is contained in:
gamarin2 2019-01-28 18:49:13 +01:00 committed by Jack Zampolin
parent 9440c3c272
commit 7988686e75
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ GOTOOLS = \
github.com/rakyll/statik
GOBIN ?= $(GOPATH)/bin
all: devtools get_vendor_deps install test_lint test
all: devtools install test_lint test
# The below include contains the tools target.
include scripts/Makefile

View File

@ -28,7 +28,7 @@ mkdir -p $GOPATH/src/github.com/cosmos
cd $GOPATH/src/github.com/cosmos
git clone https://github.com/cosmos/cosmos-sdk
cd cosmos-sdk && git checkout master
make tools && make get_vendor_deps && make install
make tools install
```
> *NOTE*: If you have issues at this step, please check that you have the latest stable version of GO installed.

View File

@ -76,7 +76,7 @@ Now it is time to upgrade the software:
```bash
cd $GOPATH/src/github.com/cosmos/cosmos-sdk
git fetch --all && git checkout master
make update_tools && make get_vendor_deps && make install
make update_tools install
```
::: tip