From 7988686e7584b81259660b2e40bd3211f8013ab2 Mon Sep 17 00:00:00 2001 From: gamarin2 Date: Mon, 28 Jan 2019 18:49:13 +0100 Subject: [PATCH] Update docs get_vendor_deps -> vendor-deps (#3402) --- Makefile | 2 +- docs/gaia/installation.md | 2 +- docs/gaia/join-testnet.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2f8086fd7a..de0666dd6e 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/docs/gaia/installation.md b/docs/gaia/installation.md index 59d6d35a7c..de48bf27d4 100644 --- a/docs/gaia/installation.md +++ b/docs/gaia/installation.md @@ -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. diff --git a/docs/gaia/join-testnet.md b/docs/gaia/join-testnet.md index 2cb2fedf87..91b3afef61 100644 --- a/docs/gaia/join-testnet.md +++ b/docs/gaia/join-testnet.md @@ -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