We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dbf65b commit 08984aaCopy full SHA for 08984aa
release.sh
@@ -98,8 +98,9 @@ for i in $SYS; do
98
cd $PACKAGE-$i-$TAG
99
100
echo "Building:" $OS $ARCH $ARM
101
- env CGO_ENABLED=0 GOOS=$OS GOARCH=$ARCH GOARM=$ARM go build -v -ldflags "$COMMITFLAGS" github.com/lightninglabs/loop/cmd/loop
102
- env CGO_ENABLED=0 GOOS=$OS GOARCH=$ARCH GOARM=$ARM go build -v -ldflags "$COMMITFLAGS" github.com/lightninglabs/loop/cmd/loopd
+ for bin in loop loopd; do
+ env CGO_ENABLED=0 GOOS=$OS GOARCH=$ARCH GOARM=$ARM go build -v -ldflags "$COMMITFLAGS" "github.com/lightninglabs/loop/cmd/$bin"
103
+ done
104
cd ..
105
106
if [[ $OS = "windows" ]]; then
0 commit comments