From 96c37d1b6359913c1c2a46252dd63ac5be78a5e8 Mon Sep 17 00:00:00 2001 From: Vigith Maurice Date: Tue, 15 Aug 2023 10:47:07 -0700 Subject: [PATCH] fix(docs): use go install for fetching tools Install using go get is deprecated: https://go.dev/doc/go-get-install-deprecation Signed-off-by: Vigith Maurice --- tools/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/README.md b/tools/README.md index 0724b339d..dc061bf77 100644 --- a/tools/README.md +++ b/tools/README.md @@ -8,4 +8,4 @@ Some of these tools mirror tools that ship with Kafka, but these tools won't req - [kafka-console-consumer](./kafka-console-consumer): a command line tool to consume arbitrary partitions of a topic on your Kafka cluster. - [kafka-producer-performance](./kafka-producer-performance): a command line tool to performance test producers (sync and async) on your Kafka cluster. -To install all tools, run `go get github.com/IBM/sarama/tools/...` +To install all tools, run `go install github.com/IBM/sarama/tools/...@latest`