summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-09-26 16:42:47 +0300
committerPaul Buetow <paul@buetow.org>2021-10-02 12:26:36 +0300
commitfcaa94c7453efa0d74e330128c0f5c2cde8f11b3 (patch)
tree1f686e5eeeb1b180cc14a3586f388f1a3492899c /Makefile
parentfe3e68afd99d8ea246be52893730f987e138ec24 (diff)
refactor config reader - also looks in additional search paths for config file unless NONE is specified
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b544388..b3c3f38 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ vet:
echo ${GO} vet $$dir; \
${GO} vet $$dir; \
done
- grep -R TODO .
+ grep -R TODO: .
lint:
${GO} get golang.org/x/lint/golint
find . -type d | while read dir; do \
@@ -43,7 +43,7 @@ lint:
done
test:
ifndef USE_ACL
- ${GO} test ./... -v
+ ${GO} test -race ./... -v
else
- ${GO} test -tags linuxacl ./... -v
+ ${GO} test -race -tags linuxacl ./... -v
endif