From b6bc8f5a452856d04536d56108e540253fd859b3 Mon Sep 17 00:00:00 2001 From: Barrett Smith Date: Mon, 6 Aug 2018 20:48:13 -0400 Subject: [PATCH] Fixing a typo in privileges that caused the new user to not have expected access. --- src/Robo/Commands/Generate/MultisiteCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Robo/Commands/Generate/MultisiteCommand.php b/src/Robo/Commands/Generate/MultisiteCommand.php index 096648230..5ff8e6489 100644 --- a/src/Robo/Commands/Generate/MultisiteCommand.php +++ b/src/Robo/Commands/Generate/MultisiteCommand.php @@ -103,7 +103,7 @@ protected function configureDrupalVm($url, $site_name, $newDBSettings) { 'name' => $newDBSettings['username'], 'host' => '%', 'password' => $newDBSettings['password'], - 'priv' => $newDBSettings['database'] . '*:ALL', + 'priv' => $newDBSettings['database'] . '.*:ALL', ]; } file_put_contents($this->projectDrupalVmConfigFile,