Skip to content

Commit

Permalink
ISAICP-5988: Allow also shortcut options.
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiu-cristea committed Jun 13, 2020
1 parent b705bb7 commit d3c4bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tasks/CollectionFactory/CollectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ protected function taskFactory($task)
}
if (!empty($task['options'])) {
foreach ($task['options'] as $option => $value) {
$taskExec->optionList($option, $value, '=');
$taskExec->optionList($option, $value);
}
}
return $taskExec;
Expand Down Expand Up @@ -212,7 +212,7 @@ protected function taskFactory($task)
}
if (!empty($task['options'])) {
foreach ($task['options'] as $option => $value) {
$taskExec->optionList($option, $value, '=');
$taskExec->optionList($option, $value);
}
}
if (!empty($task['dir'])) {
Expand Down

0 comments on commit d3c4bb3

Please sign in to comment.