Fix test in makefile

This commit is contained in:
Zaki Manian
2018-02-25 09:41:32 -08:00
parent b6d029050b
commit 3570c2eb9e

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