From b7047dafb20eee43f2c67cc99f0bfb1c9deb5fb3 Mon Sep 17 00:00:00 2001 From: Fernando Isnaldo Silva de Faria Date: Fri, 3 Feb 2023 16:36:49 -0300 Subject: [PATCH] Fix aarch64 (arm64) verification --- scripts/bootstrap.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 6a929133..a5f013a1 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -21,6 +21,7 @@ OS_ARCH=$(uname -m) case "${OS_ARCH}" in x86_64*) OS_ARCH="64";; arm64*) OS_ARCH="arm64";; + aarch64*) OS_ARCH="arm64";; *) echo "Unknown system architecture: $OS_ARCH! This script runs only on x86_64 or arm64" && exit esac