From 570e2c65072a56d5924577f657eb7f853a0b6fda Mon Sep 17 00:00:00 2001 From: c-bata Date: Tue, 18 Jul 2017 05:32:25 +0900 Subject: [PATCH] Update Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7f2ab32..bf4b172 100644 --- a/Makefile +++ b/Makefile @@ -12,16 +12,16 @@ setup: ## Setup for required tools. .PHONY: fmt fmt: ## Formatting source codes. - @goimports -w $$(glide nv -x) + @goimports -w . .PHONY: lint lint: ## Run golint and go vet. - @golint $$(glide novendor) - @go vet $$(glide novendor) + @golint . + @go vet . .PHONY: test test: ## Run the tests. - @go test $$(glide novendor) + @go test . .PHONY: help help: ## Show help text