Correctly quote Makefile lint commands

This commit is contained in:
joeduffy 2017-05-13 19:51:26 -04:00
parent 71855c7c44
commit 09e786269a

View file

@ -20,8 +20,8 @@ lint:
lint_quiet:
@echo "\033[0;32mLINT (quiet):\033[0m"
@$(shell golint cmd/... | grep -v "or be unexported")
@$(shell golint pkg/... | grep -v "or be unexported")
@echo "`golint cmd/... | grep -v "or be unexported"`"
@echo "`golint pkg/... | grep -v "or be unexported"`"
@echo "\033[0;33mgolint was run quietly; to run with noisy errors, run 'make lint'\033[0m"
test: