Merge pull request #101 from j52m/patch-1

Fix Issue #96
This commit is contained in:
myvesta 2020-12-26 13:02:40 +01:00 committed by GitHub
commit 22b5843062
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,8 +134,8 @@ PMAUSER=pma
#DROP USER and TABLE
mysql -uroot <<MYSQL_PMA1
DROP USER '$PMAUSER'@'localhost';
DROP DATABASE $PMADB;
DROP USER IF EXISTS '$PMAUSER'@'localhost';
DROP DATABASE IF EXISTS $PMADB;
FLUSH PRIVILEGES;
MYSQL_PMA1