From 98a18478c926b583b2dd4e1c0366b1e370ee366d Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Wed, 15 Dec 2021 12:40:10 +0100 Subject: [PATCH] update 'go get' idirective to 'go install' PR modifies the installation instructions to account for the deprecation of the `go get` method: https://go.dev/doc/go-get-install-deprecation. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 821fe71c..5a22bc2c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ See [documentation](#documentation). ## Install Download a binary from [releases](https://github.com/gotestyourself/gotestsum/releases), or build from -source with `go get gotest.tools/gotestsum`. +source with `go install gotest.tools/gotestsum@latest`. With `go` version before 1.17, use `go get gotest.tools/gotestsum`. ## Demo A demonstration of three `--format` options.