Skip to content

Commit

Permalink
Fix binaries installation documentation in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thcdrt committed Feb 17, 2022
1 parent c42698b commit dff2eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ When using the binaries for installation, also have a look at [doc/USAGE](doc/US

#### Linux
```bash
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-linux.tar.gz && \
gunzip ketall.gz && chmod +x ketall && mv ketall $GOPATH/bin/
curl -Lo ketall-amd64-linux.tar.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-linux.tar.gz && \
tar -xvf ketall-amd64-linux.tar.gz && chmod +x ketall-amd64-linux && mv ketall-amd64-linux $GOPATH/bin/ketall
```

#### OSX
```bash
curl -Lo ketall.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-darwin.tar.gz && \
gunzip ketall.gz && chmod +x ketall && mv ketall $GOPATH/bin/
curl -Lo ketall-amd64-darwin.tar.gz https://github.com/corneliusweig/ketall/releases/download/v1.3.8/ketall-amd64-darwin.tar.gz && \
tar -xvf ketall-amd64-darwin.tar.gz && chmod +x ketall-amd64-darwin.tar.gz && mv ketall-amd64-darwin.tar.gz $GOPATH/bin/ketall
```

#### Windows
Expand Down

0 comments on commit dff2eaf

Please sign in to comment.