From fae77231a501fa516eb06cd1c9b5a98e9b0d137b Mon Sep 17 00:00:00 2001 From: Kajetan Rzepecki Date: Sat, 8 Jun 2024 18:20:35 +0200 Subject: [PATCH] Allow installing on ARM-based Manjaro distribution Manjaro ARM lists `manjaro-arm` as the OS type, so the install.sh script would fail early without any message indicating a problem. --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7e417fae5..3daa3ea93 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -13,7 +13,7 @@ CDN="https://cdn.coollabs.io/coolify" OS_TYPE=$(grep -w "ID" /etc/os-release | cut -d "=" -f 2 | tr -d '"') # Check if the OS is manjaro, if so, change it to arch -if [ "$OS_TYPE" = "manjaro" ]; then +if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then OS_TYPE="arch" fi