diff --git a/src/PluginWrapper.php b/src/PluginWrapper.php index c2a2cbc..21c14d5 100644 --- a/src/PluginWrapper.php +++ b/src/PluginWrapper.php @@ -187,6 +187,9 @@ protected function absolutePaths($paths) { $return = array(); foreach ($paths as $path) { + if (empty($path)) { + continue; + } if (!$this->filesystem->isAbsolutePath($path)) { $path = getcwd().'/'.$path; }