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.
This commit is contained in:
Kajetan Rzepecki 2024-06-08 18:20:35 +02:00
parent 45017efe00
commit fae77231a5
No known key found for this signature in database
GPG Key ID: 652F6916DD61728E

View File

@ -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