1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-27 01:33:39 +02:00

docs: improving install instructions

refs https://github.com/goreleaser/goreleaser/issues/585
This commit is contained in:
Carlos Alexandro Becker 2018-02-28 21:03:31 -03:00
parent 2a6f6b4dd6
commit 607c2e8516
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 12 additions and 6 deletions

View File

@ -10,7 +10,7 @@ conduct](/CODE_OF_CONDUCT.md).
Prerequisites:
* `make`
* [Go 1.8+](https://golang.org/doc/install)
* [Go 1.10+](https://golang.org/doc/install)
* `rpmbuild` (`apt get install rpm`/`brew install rpm`)
* [snapcraft](https://snapcraft.io/)
* [Docker](https://www.docker.com/)

View File

@ -21,11 +21,6 @@ that and rewrote the whole thing in Go.
There are three ways to get going install GoReleaser:
### Using go get
```sh
go get github.com/goreleaser/goreleaser
```
### Using homebrew
@ -47,3 +42,14 @@ scoop install goreleaser
Download your preferred flavor from the [releases page](https://github.com/goreleaser/goreleaser/releases/latest) and install
manually.
### Using go get
Note: this method requires Go 1.10+.
```console
$ go get github.com/goreleaser/goreleaser
```
It is recommended to also run `dep ensure` to make sure that the dependencies
are in the correct versions.