Skip to content

Commit

Permalink
docs: add note about usage of go install
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Dec 13, 2024
1 parent 6dff21c commit 3e0fe75
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/site/docs/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,11 @@ task build
```

After this, the binary is available on the path `./bin/jalapeno`.

You can also build the binary from source with [`go install`](https://go.dev/ref/mod#go-install) command:

```bash
go install github.com/futurice/jalapeno/cmd/cli@latest
```

This will install the binary to `$GOPATH/bin` or `$HOME/go/bin` depending on your Go environment.

0 comments on commit 3e0fe75

Please sign in to comment.