From 2f5e79cee08ea9398af38b9a7fc9b63407a40b9d Mon Sep 17 00:00:00 2001 From: Johannes Batzill Date: Wed, 27 Mar 2024 16:30:29 +0000 Subject: [PATCH] [Makefile] fix gci tool to fixed version (latest one that worked) (#1151) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5e36dd200..af2c0f656 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ $(GOBIN)/protoc-gen-go-grpc: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2 $(GOBIN)/gci: - go install github.com/daixiang0/gci@latest + go install github.com/daixiang0/gci@v0.13.1 help: ## show help message @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% 0-9a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)