Merge branch 'release' of https://github.com/appsmithorg/appsmith into release

This commit is contained in:
Automated Github Action 2020-08-21 09:05:32 +00:00
commit 876585631e

View File

@ -14,7 +14,7 @@ check_ports_occupied() {
sudo netstat -anp tcp
else
sudo netstat -tupln tcp
fi | awk '$6 == "LISTEN" && $4 ~ /^.*[.:](80|443)$/' | wc -l | bc
fi | awk '$6 == "LISTEN" && $4 ~ /^.*[.:](80|443)$/' | wc -l | grep -o '[[:digit:]]\+'
)"
}
@ -82,11 +82,11 @@ check_os() {
package_manager="apt-get"
;;
\"Red\ Hat*\")
desired_os=1
desired_os=0
package_manager="yum"
;;
\"CentOS*\")
desired_os=1
desired_os=0
package_manager="yum"
;;
*) desired_os=0