Fix test in makefile

This commit is contained in:
Zaki Manian 2018-02-25 09:41:32 -08:00
parent b6d029050b
commit 3570c2eb9e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ get_vendor_deps:
### Testing
test:
go test -p 1 $(go list ./... | grep -v vendor)
go test -p 1 $(shell go list ./... | grep -v vendor)
########################################
### Formatting, linting, and vetting