From 1c6252b71932788dfb6ae66f91e78786be9f6949 Mon Sep 17 00:00:00 2001 From: Tim Dillon Date: Mon, 25 Jan 2021 16:55:10 +0900 Subject: [PATCH] Add Linux Mint support to install.sh (#2694) --- deploy/install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/deploy/install.sh b/deploy/install.sh index 3544dd081e..734e15d75a 100755 --- a/deploy/install.sh +++ b/deploy/install.sh @@ -138,6 +138,11 @@ check_os() { os="debian" package_manager="apt-get" ;; + Linux\ Mint*) + desired_os=1 + os="linux mint" + package_manager="apt-get" + ;; Red\ Hat*) desired_os=1 os="red hat" @@ -426,7 +431,7 @@ curl -s --location --request POST 'https://hook.integromat.com/dkwb6i52am93pi30o if [[ $desired_os -eq 0 ]];then echo "" - echo "This script is currently meant to install Appsmith on Mac OS X, Ubuntu, SLES or openSUSE machines." + echo "This script is currently meant to install Appsmith on Mac OS X, Ubuntu, Debian, Linux Mint, Red Hat, CentOS, SLES or openSUSE machines." echo_contact_support " if you wish to extend this support." curl -s --location --request POST 'https://hook.integromat.com/dkwb6i52am93pi30ojeboktvj32iw0fa' \ --header 'Content-Type: text/plain' \