Skip to content

Commit

Permalink
FIX Correctly set needs_full_setup (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored Jan 29, 2024
1 parent 7ad5b31 commit d2fb178
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion job_creator.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ public function createJob(int $phpIndex, array $opts): array
'endtoend_suite' => 'root',
'endtoend_config' => '',
'js' => false,
'needs_full_setup' => $this->installerVersion !== '' && !in_array($this->repoName, NO_INSTALLER_LOCKSTEPPED_REPOS),
// Needs full setup if installerVersion is set, OR this is one of the no-installer lockstepped repos
'needs_full_setup' => $this->installerVersion !== '' || in_array($this->repoName, NO_INSTALLER_LOCKSTEPPED_REPOS),
];
return array_merge($default, $opts);
}
Expand Down

0 comments on commit d2fb178

Please sign in to comment.