Skip to content

Commit

Permalink
FIX: Use realpath() of files
Browse files Browse the repository at this point in the history
  • Loading branch information
fnkr committed Aug 10, 2018
1 parent 398774f commit 29ba5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Source/LocalFilesystemSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function generateSourceFileCollection()
$fileCollection = new SourceFileCollection();

foreach (Files::readDirectoryRecursively($sourcePath) as $filePath) {
$fileCollection->add($this->generateSourceFileObject($filePath));
$fileCollection->add($this->generateSourceFileObject(realpath($filePath)));
}

return $fileCollection->filterByIdentifierPattern($this->fileIdentifierPattern);
Expand Down

0 comments on commit 29ba5de

Please sign in to comment.