From 2af1ccd8b2514391e36df4b662d92ada634aaaa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fa=C3=A7=20Eldenk?= Date: Sun, 9 Jun 2024 13:19:59 -0500 Subject: [PATCH] fix error message not appearing in Orange OS --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index edca949e5..0c7259428 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -17,7 +17,7 @@ if [ "$OS_TYPE" = "manjaro" ]; then OS_TYPE="arch" fi -if [ "$OS_TYPE" = "arch" ]; then +if [ "$OS_TYPE" = "arch" ] || [ "$OS_TYPE" = "archarm" ]; then OS_VERSION="rolling" else OS_VERSION=$(grep -w "VERSION_ID" /etc/os-release | cut -d "=" -f 2 | tr -d '"')