From 553992d6f8388f80a2d3a6bc9f9738f76ba5dd5d Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 18 Dec 2020 00:21:49 -0800 Subject: [PATCH] Add linux-arm7 support to build script. Closes #470 --- build/release/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/release/build.sh b/build/release/build.sh index b89a59698..352b30bdb 100755 --- a/build/release/build.sh +++ b/build/release/build.sh @@ -1,11 +1,11 @@ #!/bin/sh # Human readable names of binary distributions -DISTRO=(macOS-64bit linux-64bit linux-32bit) +DISTRO=(macOS-64bit linux-64bit linux-32bit linux-arm7) # Operating systems for the respective distributions -OS=(darwin linux linux) +OS=(darwin linux linux linux) # Architectures for the respective distributions -ARCH=(amd64 amd64 386) +ARCH=(amd64 amd64 386 arm-7) # Version VERSION=$1