forked from TrueCloudLab/frostfs-http-gw
[#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 <alexey@nspcc.ru>
This commit is contained in:
parent
f572aeb6da
commit
d1bdef6f83
1 changed files with 1 additions and 1 deletions
|
@ -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`).
|
||||
|
|
Loading…
Reference in a new issue