Skip to content

Commit

Permalink
fix(docs): use go install for fetching tools
Browse files Browse the repository at this point in the history
Install using go get is deprecated:
https://go.dev/doc/go-get-install-deprecation

Signed-off-by: Vigith Maurice <vigith@gmail.com>
  • Loading branch information
vigith committed Aug 15, 2023
1 parent 5cd9fa6 commit 96c37d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/README.md
Expand Up @@ -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`

0 comments on commit 96c37d1

Please sign in to comment.