1
0
mirror of https://git.koehlerweb.org/frodovdr/guac-install synced 2024-11-22 17:37:13 +01:00

nit spacing

This commit is contained in:
Chase Wright 2020-02-23 13:27:15 -06:00 committed by GitHub
parent 87a119e372
commit 638ab0483c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,7 +201,7 @@ if [[ "${NAME}" == "Ubuntu" ]]; then
MYSQL="mysql-server mysql-client mysql-common mysql-utilities"
# Checking if (any kind of) mysql-client or compatible command installed. This is useful for existing mariadb server
elif [ -x "$(command -v mysql)" ]; then
MYSQL=""
MYSQL=""
else
MYSQL="mysql-client"
fi
@ -216,7 +216,7 @@ elif [[ "${NAME}" == *"Debian"* ]] || [[ "${NAME}" == *"Raspbian GNU/Linux"* ]];
MYSQL="default-mysql-server default-mysql-client mysql-common"
# Checking if (any kind of) mysql-client or compatible command installed. This is useful for existing mariadb server
elif [ -x "$(command -v mysql)" ]; then
MYSQL=""
MYSQL=""
else
MYSQL="default-mysql-client"
fi