fix basic sourcedir
[pharext/pharext] / src / pharext / SourceDir / Basic.php
index fa180fee5896eede4bcefb5aebf2032a9c45e07b..f960236c765fb9c1484c1bb268b58757f0021d81 100644 (file)
@@ -62,7 +62,7 @@ class Basic implements IteratorAggregate, SourceDir
                $rii = new RecursiveIteratorIterator($rci);
                foreach ($rii as $path => $child) {
                        if (!$child->isDir()) {
-                               yield $path;
+                               yield realpath($path);
                        }
                }
        }