Skip to content

Commit

Permalink
bug #35693 [Finder] Fix unix root dir issue (chr-hertel)
Browse files Browse the repository at this point in the history
This PR was submitted for the 4.4 branch but it was merged into the 3.4 branch instead.

Discussion
----------

[Finder] Fix unix root dir issue

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #35683
| License       | MIT

not quite sure about this one 🤔

Commits
-------

9e43103 fix unix root dir issue
  • Loading branch information
fabpot committed Feb 14, 2020
2 parents f20b36e + 9e43103 commit f6f6a60
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/Symfony/Component/Finder/Finder.php
Expand Up @@ -744,6 +744,10 @@ private function searchInDirectory($dir)
*/
private function normalizeDir($dir)
{
if ('/' === $dir) {
return $dir;
}

$dir = rtrim($dir, '/'.\DIRECTORY_SEPARATOR);

if (preg_match('#^(ssh2\.)?s?ftp://#', $dir)) {
Expand Down
Expand Up @@ -74,7 +74,11 @@ public function current()
}
$subPathname .= $this->getFilename();

return new SplFileInfo($this->rootPath.$this->directorySeparator.$subPathname, $this->subPath, $subPathname);
if ('/' !== $basePath = $this->rootPath) {
$basePath .= $this->directorySeparator;
}

return new SplFileInfo($basePath.$subPathname, $this->subPath, $subPathname);
}

/**
Expand Down

0 comments on commit f6f6a60

Please sign in to comment.