Merge pull request #2178 from wutangpaul/main

Fix silent failing of install script on manjaro, make it behave as arch
This commit is contained in:
Andras Bacsai 2024-05-10 10:01:25 +02:00 committed by GitHub
commit 7f265a6692
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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