From f1fa1cc80c16d1cfadfee8b34822471c88c55c20 Mon Sep 17 00:00:00 2001 From: Steve Clark Date: Wed, 23 Nov 2022 13:52:08 -0500 Subject: [PATCH] Fix .go-version path in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 516e4ed17f0e2..7d4c1b76f0f41 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ GOFMT_FILES?=$$(find . -name '*.go' | grep -v pb.go | grep -v vendor) SED?=$(shell command -v gsed || command -v sed) -GO_VERSION_MIN=$$(cat $(CURDIR)/.go_version) +GO_VERSION_MIN=$$(cat $(CURDIR)/.go-version) PROTOC_VERSION_MIN=3.21.5 GO_CMD?=go CGO_ENABLED?=0