diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-26 09:58:10 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-26 09:58:10 +0100 |
commit | 7f2ffe05d5f5fa2001f97790aecf2e68f91bbe6a (patch) | |
tree | 61eb49d3b9cc57852277ad9c6f05ece0ecd681b3 /bin/prado-cli.php | |
parent | f9720e7ae73b2eadd909f60c52908a5e60ea0b42 (diff) |
Clean up checks for .svn directory
Diffstat (limited to 'bin/prado-cli.php')
-rwxr-xr-x | bin/prado-cli.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/prado-cli.php b/bin/prado-cli.php index 4fa70c08..b4b43062 100755 --- a/bin/prado-cli.php +++ b/bin/prado-cli.php @@ -569,7 +569,7 @@ class PradoCommandLineUnitTest extends PradoCommandLineAction if($match==null||($match!=null && $this->hasMatch($match,$entry))) $test->addTestFile($path.'/'.$entry); } - if($entry!=='.' && $entry!=='..' && $entry!=='.svn' && is_dir($path.'/'.$entry) && $recursive) + if($entry!=='.' && $entry!=='..' && is_dir($path.'/'.$entry) && $recursive) $this->addTests($test,$path.'/'.$entry,$recursive,$match); } closedir($dir); |