Skip to content
Snippets Groups Projects

Issue #3508547: Fix handling of symlinked recipes

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -195,10 +195,10 @@ final class Recipes extends ProjectBrowserSourceBase {
@@ -195,10 +195,10 @@ final class Recipes extends ProjectBrowserSourceBase {
if ($contrib_recipe_names) {
if ($contrib_recipe_names) {
$path = InstalledVersions::getInstallPath($contrib_recipe_names[0]);
$path = InstalledVersions::getInstallPath($contrib_recipe_names[0]);
assert(is_string($path));
assert(is_string($path));
$path = $this->fileSystem->realpath($path);
$path = $this->fileSystem->realpath(dirname($path));
assert(is_string($path));
assert(is_string($path));
$search_in[] = dirname($path);
$search_in[] = $path;
}
}
$finder = Finder::create()
$finder = Finder::create()
Loading