Add build path to phploc directory

This commit is contained in:
Daren Chandisingh 2014-07-29 14:18:02 +01:00 committed by Dan Cryer
parent 6421f1428e
commit 677f135b7c

View file

@ -43,7 +43,9 @@ class PhpLoc implements PHPCI\Plugin, PHPCI\ZeroConfigPlugin
{
$this->phpci = $phpci;
$this->build = $build;
$this->directory = isset($options['directory']) ? $options['directory'] : $phpci->buildPath;
$this->directory = isset($options['directory']) ?
$phpci->buildPath . '/' . $options['directory'] :
$phpci->buildPath;
}
/**