From 404a0c1039c2a158a378fb84bdbacb24ad7ec3f4 Mon Sep 17 00:00:00 2001 From: Michael Schramm Date: Wed, 12 Nov 2014 11:50:42 +0100 Subject: [PATCH] Fix parallel lint directory to include build path. Closes #645 directory should be inside of build path --- PHPCI/Plugin/PhpParallelLint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Plugin/PhpParallelLint.php b/PHPCI/Plugin/PhpParallelLint.php index 30398995..3787fd0c 100644 --- a/PHPCI/Plugin/PhpParallelLint.php +++ b/PHPCI/Plugin/PhpParallelLint.php @@ -48,7 +48,7 @@ class PhpParallelLint implements \PHPCI\Plugin $this->ignore = $this->phpci->ignore; if (isset($options['directory'])) { - $this->directory = $options['directory']; + $this->directory = $phpci->buildPath.$options['directory']; } if (isset($options['ignore'])) {