Skip to content

Commit 2c5dd62

Browse files
committed
make+release: add CLI binaries to release
1 parent 9eef23f commit 2c5dd62

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

release.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
set -e
1111

1212
PKG="github.com/lightninglabs/shushtar"
13+
LND_PKG="github.com/lightningnetwork/lnd"
14+
FARADAY_PKG="github.com/lightninglabs/faraday"
15+
LOOP_PKG="github.com/lightninglabs/loop"
1316
PACKAGE=shushtar
1417

1518
# green prints one line of green text (if the terminal supports it).
@@ -66,6 +69,9 @@ function build_release() {
6669

6770
green " - Building: ${os} ${arch} ${arm} with build tags '${buildtags}'"
6871
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${PKG}/cmd/shushtar
72+
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${LND_PKG}/cmd/lncli
73+
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${FARADAY_PKG}/cmd/frcli
74+
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${LOOP_PKG}/cmd/loop
6975
popd
7076

7177
if [[ $os == "windows" ]]; then

0 commit comments

Comments
 (0)