Skip to content

Commit

Permalink
Update install instructions and mention Homebrew
Browse files Browse the repository at this point in the history
Fixes jteeuwen#5.
  • Loading branch information
kevinburke committed Mar 6, 2018
1 parent 46eb4c1 commit 2197b05
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,27 @@ output being generated.

### Installation

To install the library and command line program, use the following:
On Macs, you can install the binary using [Homebrew](https://brew.sh):

go get -u github.com/kevinburke/go-bindata/...
```
brew install go-bindata
```

You can also download a binary from the [releases page][releases]. Switch in
your GOOS for the word "linux" below:

```
curl --silent --location --output=/usr/local/bin/go-bindata https://github.com/kevinburke/go-bindata/releases/download/3.7.0/go-bindata-linux-amd64 && chmod 755 /usr/local/bin/go-bindata
```

Alternatively, you can download the source code, if you have a working Go
installation:

```
go get -u github.com/kevinburke/go-bindata/...
```

[releases]: https://github.com/kevinburke/go-bindata/releases

### Usage

Expand Down

0 comments on commit 2197b05

Please sign in to comment.