Skip to content

Commit

Permalink
BUGFIX: 4606 correctly detect all Fusion_Files in packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Feb 5, 2024
1 parent 59478f8 commit 8f4c6eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Neos.Fusion/Classes/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ public function boot(Bootstrap $bootstrap)
}

$fusionPaths = [
$package->getResourcesPath() . 'Private/Fusion',
$package->getResourcesPath() . 'Private',
$package->getPackagePath() . 'NodeTypes'
];
foreach ($fusionPaths as $fusionPath) {
if (is_dir($fusionPath)) {
$fusionFileMonitor->monitorDirectory($fusionPath);
$fusionFileMonitor->monitorDirectory($fusionPath, '\\.fusion$');
}
}
}
Expand Down

0 comments on commit 8f4c6eb

Please sign in to comment.