From e2131523ecc33236a1f319394642144961e5ff5c Mon Sep 17 00:00:00 2001 From: Paul McClean Date: Fri, 10 May 2024 00:30:31 +0100 Subject: [PATCH] Force manjaro to be arch --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 588afc243..cbbbd0f34 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -12,6 +12,11 @@ DOCKER_VERSION="24.0" 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 + OS_TYPE="arch" +fi + if [ "$OS_TYPE" = "arch" ]; then OS_VERSION="rolling" else