Fix "go install" example

because some wrong tagging was done in the past, `latest` will point to `1.3.3` witch is actually v0.1.x.

so you have to specify the version
This commit is contained in:
6543 2022-09-14 05:51:12 +08:00
parent 6c9b2f8745
commit ca2348b15d

View file

@ -106,9 +106,9 @@ Make sure you have a current go version installed (1.13 or newer).
```
Note that GNU Make (gmake on OpenBSD) is required.
- For a quick installation without `git` & `make`:
- For a quick installation without `git` & `make`, set $version and exec:
```sh
go install code.gitea.io/tea@latest
go install code.gitea.io/tea@${version}
```
## Contributing