summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <35781042+pbuetow@users.noreply.github.com>2023-06-22 21:27:14 +0300
committerGitHub <noreply@github.com>2023-06-22 21:27:14 +0300
commit14654b432c0a5494001af330c9d4cb7efaa535bf (patch)
treee782b38060766ac89d9dd24da143b9088a3f6909 /Makefile
parent294a4239831c2b2bda5933dde8a2ededf7eb476e (diff)
parent16b2ea0f93ebe8fbb8f3dea05d3fa60456513938 (diff)
Merge pull request #33 from snonux/master
Release v4.2.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 680cef6..d764051 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ clean:
test -f $$cmd && rm $$cmd; \
done
vet:
- find . -type d | egrep -v '(./samples|./log|./doc)' | while read dir; do \
+ find . -type d | egrep -v '(./examples|./log|./doc)' | while read dir; do \
echo ${GO} vet $$dir; \
${GO} vet $$dir; \
done