From 28c320ae9790bd4c5c3e840362cf43c8b4a9c35a Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sun, 9 Jun 2024 15:52:23 +0200 Subject: [PATCH] chore: Update install.sh script to version 1.3.2 and handle Linux Mint as Ubuntu --- scripts/install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7e417fae5..d813963aa 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -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" @@ -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