From 9d78e0ad8cbeb6716fa6bdbca689bdb9ce0e8fe8 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 6 Jan 2022 22:25:54 -0500 Subject: [PATCH] README: fix install instructions (#339) go get p has been replaced by go install p@latest. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4342b26e..ccafb0e2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ For an overview, see the [introductory blog post][]. Install Wire by running: ```shell -go get github.com/google/wire/cmd/wire +go install github.com/google/wire/cmd/wire@latest ``` and ensuring that `$GOPATH/bin` is added to your `$PATH`.