Updated README

This commit is contained in:
Yavuz Aydın 2019-01-25 17:52:30 +01:00
parent 60177e8036
commit b618c5f7ef
1 changed files with 2 additions and 2 deletions

View File

@ -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
```