From 240215f2aa26d53223c618a5a2127a08d37868f0 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Fri, 5 May 2017 21:52:01 +0400 Subject: [PATCH] return back all in Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d5e5aa2c..8e43dd11 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,11 @@ -.PHONY: all test install get_vendor_deps ensure_tools +.PHONY: all test get_vendor_deps ensure_tools GOTOOLS = \ github.com/Masterminds/glide REPO:=github.com/tendermint/tmlibs +all: test + test: go test `glide novendor` @@ -14,5 +16,3 @@ get_vendor_deps: ensure_tools ensure_tools: go get $(GOTOOLS) - -