1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

Update build script.

This commit is contained in:
Ferdinand Mütsch 2020-03-31 12:51:36 +02:00
parent 7d36c4e111
commit 0351c15097

View File

@ -8,9 +8,7 @@ for os in ${OSLIST[*]}
do
for arch in ${ARCHLIST[*]}
do
GOOS=$os
GOARCH=$arch
echo "Building $GOOS / $GOARCH"
GOOS=$GOOS GOARCH=$GOARCH go build -o "build/wakapi_${VERSION}_${GOOS}_${GOARCH}" "github.com/muety/wakapi"
echo "Building $os / $arch"
GOOS=$os GOARCH=$arch go build -o "build/wakapi_${VERSION}_${os}_${arch}" "github.com/muety/wakapi"
done
done