Skip to content
Snippets Groups Projects
Commit c7af2c48 authored by Eric Chiang's avatar Eric Chiang
Browse files

*: make makefile less verbose

parent f8af792a
No related branches found
No related tags found
No related merge requests found
...@@ -30,10 +30,10 @@ bin/pokectl: FORCE ...@@ -30,10 +30,10 @@ bin/pokectl: FORCE
@go install $(REPO_PATH)/cmd/pokectl @go install $(REPO_PATH)/cmd/pokectl
test: test:
@go test -v $(shell go list ./... | grep -v '/vendor/') @go test $(shell go list ./... | grep -v '/vendor/')
testrace: testrace:
@go test -v --race $(shell go list ./... | grep -v '/vendor/') @go test --race $(shell go list ./... | grep -v '/vendor/')
vet: vet:
@go vet $(shell go list ./... | grep -v '/vendor/') @go vet $(shell go list ./... | grep -v '/vendor/')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment