Document installation for go >= 1.17

This commit is contained in:
Nicklas Frahm 2021-12-02 09:31:27 +01:00 committed by Stanisław Barzowski
parent b10eae7c68
commit 68af6e05bb

View File

@ -15,7 +15,13 @@ This code is known to work on Go 1.12 and above. We recommend always using the n
## Installation instructions
```
```shell
# go >= 1.17
# Using `go get` to install binaries is deprecated.
# The version suffix is mandatory.
go install github.com/google/go-jsonnet/cmd/jsonnet@latest
# go < 1.17
go get github.com/google/go-jsonnet/cmd/jsonnet
```