summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-29 09:16:20 -0600
committerJeff Carr <[email protected]>2024-02-29 09:16:20 -0600
commit18a9a078e039e5d5a1f4b8e9b5b83f57bc3a5418 (patch)
tree1dfb166efc5d5130f5177590d3152be66ab80d3a /Makefile
parenta57e9cff060cd4ddb1fccc424c041e7c829e4d07 (diff)
use 'go vet' instead of 'go build'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3c8637b..1d9e465 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
all:
- @GO111MODULE=off go build
+ @#GO111MODULE=off go build
+ @GO111MODULE=off go vet -x
@echo this go library package builds okay
goimports: