Skip to content

Commit

Permalink
Merge pull request #2 from airbrake/task/linux-install-instructions
Browse files Browse the repository at this point in the history
Add install instructions for .tar.gz
  • Loading branch information
scottsbaldwin authored May 5, 2021
2 parents de2f707 + 743d595 commit 4ed0b40
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,36 @@ The official command-line tool to interact with [Airbrake.io](https://airbrake.i

## Installation

### Homebrew
### Homebrew (MacOS)

```
brew tap airbrake/airbrake-cli
brew install airbrake
airbrake --version
```

### Manual install on MacOS

To install the Airbrake CLI manually on MacOS, find and download the latest .tar.gz file for the appropriate Mac architecture from https://github.com/airbrake/airbrake-cli/releases. Extract the CLI binary from the archive and install it to `/usr/local/bin` with this command:

```
tar xvzf airbrake*.tar.gz -C /usr/local/bin
airbrake --version
```

If desired, change the directory in the command above to extract the file to another location, e.g. somewhere on your `$PATH`.

### Linux

To install the Airbrake CLI on Linux, find and download the latest .tar.gz file for Linux from https://github.com/airbrake/airbrake-cli/releases. Extract the CLI binary from the archive and install it to `/usr/local/bin` with this command:

```
tar xvzf airbrake*.tar.gz -C /usr/local/bin
airbrake --version
```

If desired, change the directory in the command above to extract the file to another location, e.g. somewhere on your `$PATH`.

## Authentication

### Login command
Expand Down

0 comments on commit 4ed0b40

Please sign in to comment.