diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-11-29 14:00:55 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-11-29 14:00:55 +0100 |
commit | 0834a749e72e6239ed22113e25dd4778a44bb976 (patch) | |
tree | 9adce01837f49a76b92087056db5a4ffc76475c4 /tests/lint_test.php | |
parent | 97b1d70a37f77e54315197c7ad582890cf144b9f (diff) | |
download | forums-0834a749e72e6239ed22113e25dd4778a44bb976.tar forums-0834a749e72e6239ed22113e25dd4778a44bb976.tar.gz forums-0834a749e72e6239ed22113e25dd4778a44bb976.tar.bz2 forums-0834a749e72e6239ed22113e25dd4778a44bb976.tar.xz forums-0834a749e72e6239ed22113e25dd4778a44bb976.zip |
[ticket/11699] Properly exclude the .git directory. Namely missing dot prefix.
PHPBB3-11699
Diffstat (limited to 'tests/lint_test.php')
-rw-r--r-- | tests/lint_test.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lint_test.php b/tests/lint_test.php index 5b5d8975e8..6951ee5ef7 100644 --- a/tests/lint_test.php +++ b/tests/lint_test.php @@ -23,6 +23,7 @@ class phpbb_lint_test extends phpbb_test_case } self::$exclude = array( + dirname(__FILE__) . '/../.git', dirname(__FILE__) . '/../build/new_version', dirname(__FILE__) . '/../build/old_versions', // PHP Fatal error: Cannot declare class Container because the name is already in use in /var/www/projects/phpbb3/tests/../phpBB/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php on line 20 @@ -47,7 +48,7 @@ class phpbb_lint_test extends phpbb_test_case $dh = opendir($root); while (($filename = readdir($dh)) !== false) { - if ($filename == '.' || $filename == '..' || $filename == 'git') + if ($filename == '.' || $filename == '..') { continue; } |