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