🐛 Add missing amd64 option on arch detection code on mange.sh script

Signed-off-by: Slava "nerfur" Voronzoff <nerfur@gmail.com>
This commit is contained in:
Slava "nerfur" Voronzoff
2025-11-28 01:39:53 +03:00
committed by Andrey Antukh
parent 00f8eac8fa
commit bee2f70bfa

View File

@@ -19,7 +19,7 @@ set -e
ARCH=$(uname -m) ARCH=$(uname -m)
if [[ "$ARCH" == "x86_64" || "$ARCH" == "i386" || "$ARCH" == "i686" ]]; then if [[ "$ARCH" == "x86_64" || "$ARCH" == "amd64" || "$ARCH" == "i386" || "$ARCH" == "i686" ]]; then
ARCH="amd64" ARCH="amd64"
elif [[ "$ARCH" == "aarch64" || "$ARCH" == "arm64" ]]; then elif [[ "$ARCH" == "aarch64" || "$ARCH" == "arm64" ]]; then
ARCH="arm64" ARCH="arm64"