[ticket/14489] Fix bug where extension custom compiler pass cannot be found.

This is returning an extra / on my machine which throws off the next code block, and then the class can't be found.

PHPBB3-14489
This commit is contained in:
Mark Shaw 2016-02-18 23:56:53 -05:00
parent b7deef46ac
commit 632418ad6e

View file

@ -589,7 +589,7 @@ class container_builder
->ignoreUnreadableDirs(true) ->ignoreUnreadableDirs(true)
->ignoreVCS(true) ->ignoreVCS(true)
->followLinks() ->followLinks()
->in($this->phpbb_root_path . 'ext/') ->in($this->phpbb_root_path . 'ext')
; ;
/** @var \SplFileInfo $pass */ /** @var \SplFileInfo $pass */