diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2020-12-08 14:32:29 +0000 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2020-12-08 14:32:29 +0000 |
| commit | 602fb36da6c734a2d64bf4be13719c7349d5fe73 (patch) | |
| tree | 71dd7f67e9fc1ae3b5a55433425120b57a53e73c /Makefile | |
| parent | c74bfb883c35b15883e4cb1356e8a52282b96971 (diff) | |
make lint and vet happy
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,8 +24,8 @@ vet: lint: ${GO} get golang.org/x/lint/golint find . -type d | while read dir; do \ - echo ${GOPATH}/bin/golint $$dir; \ - ${GOPATH}/bin/golint $$dir; \ + echo golint $$dir; \ + golint $$dir; \ done test: ${GO} test ./... -v |
