diff --git a/src/Provision/Robo/ProvisionCollection.php b/src/Provision/Robo/ProvisionCollection.php index 33b2db00..2755ce73 100644 --- a/src/Provision/Robo/ProvisionCollection.php +++ b/src/Provision/Robo/ProvisionCollection.php @@ -31,7 +31,7 @@ public function run() */ private function runWithoutCompletion() { - $result = Result::success($this); + $result = Result::success($this, 'Provision Task', [], FALSE); if (empty($this->taskList)) { return $result; @@ -170,7 +170,7 @@ private function runTaskList($name, array $taskList, Result $result) } catch (\Exception $e) { // Tasks typically should not throw, but if one does, we will // convert it into an error and roll back. - return Result::fromException($task, $e, $result->getData()); + return Result::fromException($task, $e, $result->getData(), FALSE); } return $result; }