From 9b638b866662778f254dba167f414dbddab325ba Mon Sep 17 00:00:00 2001
From: Luke Shumaker <lukeshu@lukeshu.com>
Date: Tue, 7 Feb 2023 11:46:01 -0700
Subject: fixup! Fix compilation with Go 1.20

This invovles upgrading golangci-lint, as v1.51.0 is needed to support
Go 1.20.
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index 867bae9..0bb62fe 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,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))
-- 
cgit v1.2.3-2-g168b