We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4937935 commit ae6f782Copy full SHA for ae6f782
src/Gitonomy/Git/Repository.php
@@ -434,7 +434,9 @@ public function getSize()
434
$totalBytes = 0;
435
$path = realpath($this->gitDir);
436
if ($path && file_exists($path)) {
437
+ echo "\n";
438
foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \FilesystemIterator::SKIP_DOTS)) as $object) {
439
+ echo $object->getPath().'/'.$object->getFileName().':'.$object->getSize()."\n";
440
$totalBytes += $object->getSize();
441
}
442
0 commit comments