summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2021-12-03 12:29:39 +0000
committerPaul Buetow <pbuetow@mimecast.com>2021-12-03 12:29:39 +0000
commit9413bf8c8fe505db9e046fae12dad9951117e22d (patch)
tree4775ebdc0a113cf961cefb30d3bc8324b487f46b /Makefile
parentdecb0434e84b34777d289f7f639e8d2363457417 (diff)
fix misuse of unbuffered channel for OS signal handling
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a3b299c..680cef6 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,8 @@ vet:
echo ${GO} vet $$dir; \
${GO} vet $$dir; \
done
- grep -R TODO: .
+ sh -c 'grep -R NEXT: .'
+ sh -c 'grep -R TODO: .'
lint:
${GO} get golang.org/x/lint/golint
find . -type d | while read dir; do \