diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-05-17 13:07:00 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-05-17 13:07:00 +0200 |
commit | e44acf4084a6b01929a64a7449bfaa043843de08 (patch) | |
tree | 847040749961927c17aca3afc821c831e8a9f966 | |
parent | 9cea96ad4e79930381c82b0e429b70f725354728 (diff) | |
parent | 223058c8c69203c48411f14e95b1ee36226ac5c8 (diff) | |
download | forums-e44acf4084a6b01929a64a7449bfaa043843de08.tar forums-e44acf4084a6b01929a64a7449bfaa043843de08.tar.gz forums-e44acf4084a6b01929a64a7449bfaa043843de08.tar.bz2 forums-e44acf4084a6b01929a64a7449bfaa043843de08.tar.xz forums-e44acf4084a6b01929a64a7449bfaa043843de08.zip |
Merge branch 'task/sami' into task/sami-ascraeus
* task/sami:
[task/sami] Establish alphabetical order.
[task/sami] Also ignore ext/ directory.
-rw-r--r-- | build/sami.conf.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/sami.conf.php b/build/sami.conf.php index 0edf918a2d..dd57ec8780 100644 --- a/build/sami.conf.php +++ b/build/sami.conf.php @@ -18,8 +18,9 @@ $iterator = Symfony\Component\Finder\Finder::create() ->name('*.php') ->in(__DIR__ . '/../phpBB/') ->notPath('#^cache/#') - ->notPath('#^vendor/#') ->notPath('#^develop/#') + ->notPath('#^ext/#') + ->notPath('#^vendor/#') ->notPath('data') ; |