From 4fff8821a32012fd6b3d94be6cd10824ee5c24a1 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 16 Mar 2017 11:43:46 +0400 Subject: [PATCH] replace fullpath with a dot in Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 32ec678624..28b99b6c6a 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,22 @@ all: test install -NOVENDOR = go list github.com/tendermint/basecoin/... | grep -v /vendor/ +NOVENDOR = go list ./... | grep -v /vendor/ build: - go build github.com/tendermint/basecoin/cmd/... + go build ./cmd/... install: - go install github.com/tendermint/basecoin/cmd/... + go install ./cmd/... test: go test `${NOVENDOR}` #go run tests/tendermint/*.go get_deps: - go get -d github.com/tendermint/basecoin/... + go get -d ./... update_deps: - go get -d -u github.com/tendermint/basecoin/... + go get -d -u ./... get_vendor_deps: go get github.com/Masterminds/glide