fix basic sourcedir
authorMichael Wallner <mike@php.net>
Mon, 18 May 2015 15:11:04 +0000 (17:11 +0200)
committerMichael Wallner <mike@php.net>
Mon, 18 May 2015 15:11:04 +0000 (17:11 +0200)
bin/pharext
src/pharext/SourceDir/Basic.php

index 0858fa6cda382d7d846bfd179b2ebe0305f5f249..98236aba317295cec278e0aa70657557f48bd2d3 100755 (executable)
Binary files a/bin/pharext and b/bin/pharext differ
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);
                        }
                }
        }