Skip to content

Commit

Permalink
chore: Update install.sh script to version 1.3.2 and handle Linux Min…
Browse files Browse the repository at this point in the history
…t as Ubuntu
  • Loading branch information
andrasbacsai committed Jun 9, 2024
1 parent 45017ef commit 28c320a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e # Exit immediately if a command exits with a non-zero status
#set -u # Treat unset variables as an error and exit
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status

VERSION="1.3.1"
VERSION="1.3.2"
DOCKER_VERSION="26.0"

CDN="https://cdn.coollabs.io/coolify"
Expand All @@ -22,6 +22,11 @@ if [ "$OS_TYPE" = "pop" ]; then
OS_TYPE="ubuntu"
fi

# Check if the OS is linuxmint, if so, change it to ubuntu
if [ "$OS_TYPE" = "linuxmint" ]; then
OS_TYPE="ubuntu"
fi

if [ "$OS_TYPE" = "arch" ]; then
OS_VERSION="rolling"
else
Expand Down

0 comments on commit 28c320a

Please sign in to comment.