From 6a97d9f85548aa60c1838bd2be349cd6087140ce Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sat, 17 May 2014 13:04:25 +0200 Subject: [PATCH] [task/sami] Also ignore ext/ directory. PHPBB3-12495 --- build/sami.conf.php | 1 + 1 file changed, 1 insertion(+) diff --git a/build/sami.conf.php b/build/sami.conf.php index 0edf918a2d..de23684548 100644 --- a/build/sami.conf.php +++ b/build/sami.conf.php @@ -18,6 +18,7 @@ $iterator = Symfony\Component\Finder\Finder::create() ->name('*.php') ->in(__DIR__ . '/../phpBB/') ->notPath('#^cache/#') + ->notPath('#^ext/#') ->notPath('#^vendor/#') ->notPath('#^develop/#') ->notPath('data')