Skip to content

Commit

Permalink
publish v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed May 10, 2022
1 parent f13fc4c commit 674fcfd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
invoicewithdescriptionhash
dist
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
invoicewithdescriptionhash: $(shell find . -name "*.go")
go build -o ./invoicewithdescriptionhash

musl: $(shell find . -name "*.go")
CC=$$(which musl-gcc) go build -ldflags='-s -w -linkmode external -extldflags "-static"' -o ./invoicewithdescriptionhash

dist: $(shell find .. -name "*.go")
mkdir -p dist
gox -ldflags='-s -w' -osarch="darwin/amd64 linux/386 linux/amd64 linux/arm linux/arm64 freebsd/amd64 openbsd/amd64" -output="dist/invoicewithdescriptionhash_{{.OS}}_{{.Arch}}"
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
func main() {
p := plugin.Plugin{
Name: "invoicewithdescriptionhash",
Version: "v1.2",
Version: "v1.3",
Options: []plugin.Option{},
RPCMethods: []plugin.RPCMethod{
{
Expand Down

0 comments on commit 674fcfd

Please sign in to comment.