From 87baf9d8bfb8e7a14a590d8dfc18410ae4785426 Mon Sep 17 00:00:00 2001 From: Eugene Medvedev Date: Mon, 19 Jun 2023 10:44:14 +0300 Subject: [PATCH] =?UTF-8?q?=E2=AD=90=20Building=20for=20Raspberry.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index ecc484c..d2b3cea 100755 --- a/build.sh +++ b/build.sh @@ -3,3 +3,4 @@ env GOOS=linux GOARCH=amd64 go build -o build/lotw-trust_linux -ldflags '-s -w' env GOOS=windows GOARCH=amd64 go build -o build/lotw-trust.exe -ldflags '-s -w' env GOOS=darwin GOARCH=amd64 go build -o build/lotw-trust_osx -ldflags '-s -w' +env GOOS=linux GOARCH=arm64 go build -o build/lotw-trust_rpi64 -ldflags '-s -w'