We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45017ef commit 28c320aCopy full SHA for 28c320a
scripts/install.sh
@@ -6,7 +6,7 @@ set -e # Exit immediately if a command exits with a non-zero status
6
#set -u # Treat unset variables as an error and exit
7
set -o pipefail # Cause a pipeline to return the status of the last command that exited with a non-zero status
8
9
-VERSION="1.3.1"
+VERSION="1.3.2"
10
DOCKER_VERSION="26.0"
11
12
CDN="https://cdn.coollabs.io/coolify"
@@ -22,6 +22,11 @@ if [ "$OS_TYPE" = "pop" ]; then
22
OS_TYPE="ubuntu"
23
fi
24
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
+
30
if [ "$OS_TYPE" = "arch" ]; then
31
OS_VERSION="rolling"
32
else
0 commit comments