Improve Compilation Section in Readme (#543)
This PR adds two small improvements to the compilation Section of the Readme: - Add go/The Go Programming Language to the list of required tools in the compilation section of the readme. - Add a short explanation how the compiled source can be installed via make install, with a note about the GOPATH Co-authored-by: Christoph Wildhagen <git@christoph-wildhagen.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/543 Reviewed-by: John Olheiser <john+gitea@jolheiser.com> Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.io> Co-authored-by: ASDFGamer <asdfgamer@noreply.gitea.io> Co-committed-by: ASDFGamer <asdfgamer@noreply.gitea.io>
This commit is contained in:
parent
d9da952e96
commit
abcaa58312
|
@ -105,6 +105,11 @@ Make sure you have a current go version installed (1.13 or newer).
|
|||
make
|
||||
```
|
||||
Note that GNU Make (gmake on OpenBSD) is required.
|
||||
If you want to install the compiled program you have to execute the following command:
|
||||
```sh
|
||||
make install
|
||||
```
|
||||
This installs the binary into the "bin" folder inside of your GOPATH folder (`go env GOPATH`). It is possible that this folder isn't in your PATH Environment Variable.
|
||||
|
||||
- For a quick installation without `git` & `make`, set $version and exec:
|
||||
```sh
|
||||
|
|
Loading…
Reference in New Issue