From e59bcee87e27ff42907d300fc79bfc2e84a8a025 Mon Sep 17 00:00:00 2001 From: "Esteban Mackay Q." Date: Sun, 15 Dec 2024 04:53:48 -0500 Subject: [PATCH] Update asl-wizard.sh --- install/asl-wizard.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/asl-wizard.sh b/install/asl-wizard.sh index 7f60fbf..410367d 100644 --- a/install/asl-wizard.sh +++ b/install/asl-wizard.sh @@ -13,7 +13,7 @@ if [[ -f /etc/debian_version ]]; then DEBIAN_VERSION=$(cat /etc/debian_version) # Verificar si es Debian 12 (Bookworm) y si el sistema es 64-bit - if [[ "$DEBIAN_VERSION" == *"12"* && "$(uname -m)" == "x86_64" ]]; then + if [[ "$DEBIAN_VERSION" == *"12"* && "$(uname -m)" == "64" ]]; then # Ejecutar el script para Debian 12 x64 echo "Ejecutando para Debian 12 x64..." cd /opt @@ -130,7 +130,7 @@ if [[ -f /etc/debian_version ]]; then DEBIAN_VERSION=$(cat /etc/debian_version) # Verificar si es Debian 12 (Bookworm) y si el sistema es 64-bit - if [[ "$DEBIAN_VERSION" == *"12"* && "$(uname -m)" == "x86_64" ]]; then + if [[ "$DEBIAN_VERSION" == *"12"* && "$(uname -m)" == "64" ]]; then # Ejecutar el script para Debian 12 x64 echo "Ejecutando para Debian 12 x64..." wget https://gitlab.com/hp3icc/emq-TE1/-/raw/main/install/qemu_x86-64.zip -O /usr/bin/qemu_x86-64.zip