From e4d8c5ef7f113981efea41d7390dc25284d0be6c Mon Sep 17 00:00:00 2001 From: Klaus Silveira Date: Fri, 25 May 2012 18:20:55 -0300 Subject: [PATCH] Removing recursive directory search, not very stable right now --- lib/Git/Client.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/Git/Client.php b/lib/Git/Client.php index 595274c..952f5b4 100644 --- a/lib/Git/Client.php +++ b/lib/Git/Client.php @@ -85,10 +85,6 @@ class Client $repositories[] = array('name' => $file->getFilename(), 'path' => $file->getPathname(), 'description' => $description); continue; } - - if ($file->isDir()) { - $repositories = $this->recurseDirectory($file->getPathname()); - } } return $repositories;