Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Provision/Robo/ProvisionCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down