Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 8fc8905

Browse files
committed
Safety check
1 parent 1acaaed commit 8fc8905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Support/TaskManifest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private static function currentNamespace(): string
7070

7171
private function isStale(array $manifest): bool
7272
{
73-
return $manifest['namespace'] !== self::currentNamespace();
73+
return ! isset($manifest['namespace']) || $manifest['namespace'] !== self::currentNamespace();
7474
}
7575

7676
protected function write(array $tasks): void

0 commit comments

Comments
 (0)