doc: improved doc about the build from sources. (#1162)

This commit is contained in:
Ludovic Fernandez 2020-05-17 00:57:55 +02:00 committed by GitHub
parent 444e311688
commit e5d4dd166d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -35,7 +35,7 @@ owners to license your work under the terms of the [MIT License](LICENSE).
Requirements:
- `go` v1.12+
- `go` v1.14+
- environment variable: `GO111MODULE=on`
First, you have to install [GoLang](https://golang.org/doc/install) and [golangci-lint](https://github.com/golangci/golangci-lint#install).

View file

@ -42,7 +42,7 @@ pkg install lego
Requirements:
- `go` v1.12+
- `go` v1.14+
- environment variable: `GO111MODULE=on`
To install the latest development version from sources, just run:
@ -50,3 +50,11 @@ To install the latest development version from sources, just run:
```bash
go get -u github.com/go-acme/lego/v3/cmd/lego
```
or
```bash
git clone git@github.com:go-acme/lego.git
make # tests + doc + build
make build # only build
```