diff --git a/src/Robo/Commands/Drupal/DrupalCommand.php b/src/Robo/Commands/Drupal/DrupalCommand.php index 36a6895393..bfd8625c55 100644 --- a/src/Robo/Commands/Drupal/DrupalCommand.php +++ b/src/Robo/Commands/Drupal/DrupalCommand.php @@ -43,9 +43,10 @@ function ($string) { ->assume(TRUE) ->printOutput(TRUE); - if (!$this->getConfigValue('cm.strategy') == 'features') { - $cm_core_key = $this->getConfigValue('cm.core.key'); - $task->option('config-dir', $this->getConfigValue("cm.core.dirs.$cm_core_key.path")); + $cm_core_key = $this->getConfigValue('cm.core.key'); + $task->option('config-dir', $this->getConfigValue("cm.core.dirs.$cm_core_key.path")); + if ($this->getConfigValue('cm.strategy') == 'features') { + $task->option('partial'); } $result = $task->interactive()->run();