From b618c5f7efdbc747fa4a6bf1640855e843149a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yavuz=20Ayd=C4=B1n?= Date: Fri, 25 Jan 2019 17:52:30 +0100 Subject: [PATCH] Updated README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f51e89f..68b50c2 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ Test if it works with: ``` PING=$(sudo mysqladmin ping 2>/dev/null) if [ "$PING" != "mysqld is alive" ]; then - clear && echo "Error: Unable to connect to MySQL Server!" + clear && echo 'Error: Unable to connect to MySQL Server!' else - clear && echo "Successfully connected to the MySQL server!" + clear && echo 'Successfully connected to the MySQL server!' fi ```