From d1bdef6f83814134048bb41c3aa2044fcac63696 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Mon, 21 Mar 2022 12:10:02 +0300 Subject: [PATCH] [#133] Replace `go get` with `go install` Since Go 1.16, go install can install a command at a version specified on the command line while. Starting in Go 1.17, installing executables with go get is deprecated. Signed-off-by: Alex Vanin --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd87190..866e715 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ NeoFS HTTP Gateway bridges NeoFS internal protocol and HTTP standard. ## Installation -```go get -u github.com/nspcc-dev/neofs-http-gw``` +```go install github.com/nspcc-dev/neofs-http-gw``` Or you can call `make` to build it from the cloned repository (the binary will end up in `bin/neofs-http-gw`).