pull/59/head v0.3.1
edouard 2 years ago
parent 0b4fe71bd7
commit d611b9d857

@ -18,7 +18,10 @@ Require the [go programming language](https://golang.org/) (version >= 1.13)
``` ```
git clone https://github.com/edouardparis/lntop.git git clone https://github.com/edouardparis/lntop.git
cd lntop && go install ./... cd lntop
go build // creates a binary `lntop` in directory
go install // creates a binary and move it in your $GOBIN path
``` ```
With Go version >= 1.16, you can use [`go-install`](https://golang.org/ref/mod#go-install) With Go version >= 1.16, you can use [`go-install`](https://golang.org/ref/mod#go-install)

@ -16,7 +16,7 @@ import (
"github.com/edouardparis/lntop/cli" "github.com/edouardparis/lntop/cli"
) )
const Version = "v0.3.0" const Version = "v0.3.1"
func main() { func main() {
err := cli.New(Version).Run(os.Args) err := cli.New(Version).Run(os.Args)

Loading…
Cancel
Save