diff --git a/job_creator.php b/job_creator.php index b9f23d5..686c550 100644 --- a/job_creator.php +++ b/job_creator.php @@ -153,7 +153,7 @@ public function createJob(int $phpIndex, array $opts): array 'js' => false, 'doclinting' => false, // Needs full setup if installerVersion is set, OR this is a recipe - 'needs_full_setup' => $this->installerVersion !== '' || (!empty($this->repoData) && $this->repoData['type'] === 'recipe'), + 'needs_full_setup' => $this->installerVersion !== '' || (isset($this->repoData['type']) && $this->repoData['type'] === 'recipe'), ]; return array_merge($default, $opts); }