Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Update README with curl instructions for Kedge download
Browse files Browse the repository at this point in the history
Updates the README with `curl` instructions rather than using binary
links.
  • Loading branch information
cdrage committed Jul 17, 2017
1 parent 9c3094b commit 1be88b4
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,23 @@ Check out our [roadmap](ROADMAP.md) as we push towards a __0.1.0__ release.
## Using Kedge

### Installation
You can download latest master build for all major operating systems and architectures.
- [Linux (amd64)][Bintray Latest Linux]
- [macOS (darwin)][Bintray Latest macOS]
- [Windows (amd64)][Bintray Latest Windows]
You can download latest binary (built on each master PR merge) for [Linux (amd64)][Bintray Latest Linux], [macOS (darwin)][Bintray Latest macOS] or [Windows (amd64)][Bintray Latest Windows] from [Bintray](https://bintray.com):

Or you can build it yourself from the master GitHub branch:
```sh
# Linux
curl -L https://dl.bintray.com/kedgeproject/kedge/latest/kedge-linux-amd64 -o kedge

# macOS
curl -L https://dl.bintray.com/kedgeproject/kedge/latest/kedge-darwin-amd64 -o kedge

# Windows
curl -L https://dl.bintray.com/kedgeproject/kedge/latest/kedge-windows-amd64.exe -o kedge

chmod +x kedge
sudo mv ./kedge /usr/local/bin/kedge
```

You can also download Kedge via Go:

```sh
go get github.com/kedgeproject/kedge
Expand Down

0 comments on commit 1be88b4

Please sign in to comment.