From e263f00f9564e1c2590cd941be80f60030beb8e5 Mon Sep 17 00:00:00 2001 From: malikkotob Date: Tue, 23 May 2017 09:30:06 -0400 Subject: [PATCH] Remove double quote from drush command. (#1529) --- src/Robo/Commands/Setup/SyncCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Robo/Commands/Setup/SyncCommand.php b/src/Robo/Commands/Setup/SyncCommand.php index 41b932cce..9286943c3 100644 --- a/src/Robo/Commands/Setup/SyncCommand.php +++ b/src/Robo/Commands/Setup/SyncCommand.php @@ -104,7 +104,7 @@ public function syncDbDefault() { $task = $this->taskDrush() ->alias(NULL) - ->drush('cc drush"') + ->drush('cache-clear drush') ->drush('sql-drop') ->drush('sql-sync') ->arg($remote_alias)