Skip to content

Commit

Permalink
README: properly follow redirects in download curl commands
Browse files Browse the repository at this point in the history
  • Loading branch information
slimsag authored May 8, 2018
1 parent 1af97e4 commit fc423c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Currently, the `src` CLI only provides access to Sourcegraph's GraphQL API. It l
### Mac OS:

```bash
curl https://github.com/sourcegraph/src-cli/releases/download/latest/src_darwin_amd64 -o /usr/local/bin/src
curl -L https://github.com/sourcegraph/src-cli/releases/download/latest/src_darwin_amd64 -o /usr/local/bin/src
chmod +x /usr/local/bin/src
```

### Linux:

```bash
curl https://github.com/sourcegraph/src-cli/releases/download/latest/src_linux_amd64 -o /usr/local/bin/src
curl -L https://github.com/sourcegraph/src-cli/releases/download/latest/src_linux_amd64 -o /usr/local/bin/src
chmod +x /usr/local/bin/src
```

Expand Down

0 comments on commit fc423c4

Please sign in to comment.