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
commit17c2d07222c611411db17852dc81bf83562cb545 (patch)
treee782b38060766ac89d9dd24da143b9088a3f6909 /Makefile
parent42442a001c122a1cba010b4511fb1e989dea94d6 (diff)
parentff5832c38e14378e85ee484a473ab14f4615efb8 (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