build: add Linux ARM64 arch support (#499)

pull/481/head
Jesús Rubio 2023-04-16 04:23:27 +02:00 committed by GitHub
parent 3e0905abac
commit 86f779a959
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -3,13 +3,17 @@
# Ref: https://github.com/denoland/deno_install
# TODO(everyone): Keep this script simple and easily auditable.
# TODO(mf): this should work on Linux and macOS. Not intended for Windows.
# TODO(mf): this should work on Linux and macOS. Not intended for Windows.
set -e
os=$(uname -s)
os=$(uname -s | tr '[:upper:]' '[:lower:]')
arch=$(uname -m)
if [ "$arch" = "aarch64" ]; then
arch="arm64"
fi
if [ $# -eq 0 ]; then
goose_uri="https://github.com/pressly/goose/releases/latest/download/goose_${os}_${arch}"
else