From d86aa0b4e21ffb8b8175b29af99d2d8d612ecb06 Mon Sep 17 00:00:00 2001 From: Haruue Date: Wed, 8 Jan 2025 14:57:02 +0900 Subject: [PATCH] chore(scripts): detect arch for loong64 --- scripts/install_server.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install_server.sh b/scripts/install_server.sh index 4277ab946b..93c06d977c 100644 --- a/scripts/install_server.sh +++ b/scripts/install_server.sh @@ -436,6 +436,9 @@ check_environment_architecture() { 's390x') ARCHITECTURE='s390x' ;; + 'loongarch64') + ARCHITECTURE='loong64' + ;; *) error "The architecture '$(uname -a)' is not supported." note "Specify ARCHITECTURE= to bypass this check and force this script to run on this $(uname -m)."