docs: We now require Go 1.15

This commit is contained in:
fox.cpp 2021-10-11 20:51:15 +03:00
parent e16bbfb9fa
commit 14c1be052e
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -20,8 +20,8 @@ available in some distributions (*cough* Debian *cough*).
It should not be hard to grab a recent built toolchain from golang.org:
```
wget "https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz"
tar xf "go1.14.6.linux-amd64.tar.gz"
wget "https://dl.google.com/go/go1.15.6.linux-amd64.tar.gz"
tar xf "go1.15.6.linux-amd64.tar.gz"
export GOROOT="$PWD/go"
export PATH="$PWD/go/bin:$PATH"
```