From 5e198bcec62065d77c8cdb7219a4784a0bfaf85c Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 5 Jun 2021 00:02:34 -0700 Subject: [PATCH] Add arm64 arch to build targets. Closes #1053 --- 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 a4fc2fc07..15ad58e0c 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 linux-arm7) +DISTRO=(macOS-64bit linux-64bit linux-32bit linux-arm7 linux-arm64) # Operating systems for the respective distributions -OS=(darwin linux linux linux) +OS=(darwin linux linux linux linux) # Architectures for the respective distributions -ARCH=(amd64 amd64 386 arm-7) +ARCH=(amd64 amd64 386 arm-7 arm64) # Version VERSION=$1