diff --git a/PHPCI/Plugin/Mysql.php b/PHPCI/Plugin/Mysql.php index 1d261300..e67c31a4 100644 --- a/PHPCI/Plugin/Mysql.php +++ b/PHPCI/Plugin/Mysql.php @@ -91,7 +91,7 @@ class Mysql implements \PHPCI\Plugin throw new \Exception("Import statement must contiain an 'file' key"); } - $import_file = $this->phpci->buildPath . '/' . $query['file']; + $import_file = $this->phpci->buildPath . $query['file']; if (!is_readable($import_file)) { throw new \Exception("Cannot open SQL import file: $import_file"); }