summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-01-08 23:48:37 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 16:16:53 -0700
commit573316e3c2ddd91fd0f36d2251f9660b4f98bebc (patch)
tree3e4793944472e3e2ae8262e4b2ef52cd19b08d58 /Makefile
parent61656c6d1ba2bb463c1a51b69c151eb2e495c20b (diff)
binstruct: Make the cache thread-safe
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b3bcdd8..c16dfd7 100644
--- a/Makefile
+++ b/Makefile
@@ -54,7 +54,7 @@ go-mod-tidy:
go-mod-tidy: go-mod-tidy/main
go-mod-tidy/main:
rm -f go.sum
- go mod tidy -go $(goversion) -compat $(goversion)
+ go mod tidy -go 1.20 -compat $(goversion)
.PHONY: go-mod-tidy/main
go-mod-tidy: $(patsubst tools/src/%/go.mod,go-mod-tidy/tools/%,$(wildcard tools/src/*/go.mod))