From d15d1d9a333cbaa875ce46308bb35b4ff9f22b07 Mon Sep 17 00:00:00 2001 From: Ivan Smirnov Date: Thu, 3 Feb 2022 23:02:49 -0700 Subject: [PATCH] Update installation to use 'go install' 'go get' is deprecated. Update to use the 'go install foo@latest' syntax. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5d4d0d7..49281203 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ You can ask questions about how to use GoConvey on [StackOverflow](http://stacko Installation ------------ - $ go get github.com/smartystreets/goconvey + $ go install github.com/smartystreets/goconvey@latest [Quick start](https://github.com/smartystreets/goconvey/wiki#get-going-in-25-seconds) -----------