summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 78aece4..8e3d608 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ install: build
cp -pv dmap ${GOPATH}/bin/dmap
cp -pv dtail ${GOPATH}/bin/dtail
vet:
- find . -type d | while read dir; do \
+ find . -type d | egrep -v '(./samples|./log|./doc)' | while read dir; do \
echo ${GO} vet $$dir; \
${GO} vet $$dir; \
done
@@ -29,5 +29,3 @@ lint:
done
test:
${GO} test ./... -v
-docker_build:
- docker build . -t dtail:latest