From 05f39f83ea58b6804f0f06ce7df687cf8baff111 Mon Sep 17 00:00:00 2001 From: Dave Pagini Date: Mon, 12 Mar 2018 11:20:28 -0400 Subject: [PATCH] Run drush cr instead off cc-drush in SyncCommand. --- src/Robo/Commands/Sync/SyncCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Robo/Commands/Sync/SyncCommand.php b/src/Robo/Commands/Sync/SyncCommand.php index 79aec781d..e31ae02f9 100644 --- a/src/Robo/Commands/Sync/SyncCommand.php +++ b/src/Robo/Commands/Sync/SyncCommand.php @@ -144,7 +144,7 @@ public function syncDb() { $task->drush('sql-sanitize'); } - $task->drush('cache-clear drush'); + $task->drush('cr'); $task->drush('sqlq "TRUNCATE cache_entity"'); $result = $task->run();