From d1ff55d62743a85f8e8150587f2ae51ad3828e42 Mon Sep 17 00:00:00 2001 From: Andrew Caird Date: Sat, 1 Apr 2023 14:14:18 -0400 Subject: [PATCH] update README for `go install` `go get` is no longer supported; use `go install` --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aeea963..63a8658 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,9 @@ The following shows `gotests` in action using the [official Sublime Text 3 plugi __Minimum Go version:__ Go 1.6 -Use [`go get`](https://golang.org/cmd/go/#hdr-Download_and_install_packages_and_dependencies) to install and update: - +Use [`go install`](https://pkg.go.dev/cmd/go#hdr-Compile_and_install_packages_and_dependencies) to install and update: ```sh -$ go get -u github.com/cweill/gotests/... +$ go install github.com/cweill/gotests/gotests@latest ``` ## Usage