Skip to content

Commit

Permalink
Force manjaro to be arch
Browse files Browse the repository at this point in the history
  • Loading branch information
wutangpaul committed May 9, 2024
1 parent 94acd12 commit e213152
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e213152

Please sign in to comment.