From 89a3f7b0374bab97f31f5862b3558cdf1016e00a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 22 Nov 2020 11:00:53 +0000 Subject: can run test container for local development purposes --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3