Skip to content

Commit 28c320a

Browse files
committed
chore: Update install.sh script to version 1.3.2 and handle Linux Mint as Ubuntu
1 parent 45017ef commit 28c320a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scripts/install.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e # Exit immediately if a command exits with a non-zero status
66
#set -u # Treat unset variables as an error and exit
77
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status
88

9-
VERSION="1.3.1"
9+
VERSION="1.3.2"
1010
DOCKER_VERSION="26.0"
1111

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

25+
# Check if the OS is linuxmint, if so, change it to ubuntu
26+
if [ "$OS_TYPE" = "linuxmint" ]; then
27+
OS_TYPE="ubuntu"
28+
fi
29+
2530
if [ "$OS_TYPE" = "arch" ]; then
2631
OS_VERSION="rolling"
2732
else

0 commit comments

Comments
 (0)