From 079a567cf0a2d7df46e0d0f7fa929c9d7f7116f7 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Tue, 25 Feb 2014 10:57:44 +0000 Subject: [PATCH] Update Codeception.php --- PHPCI/Plugin/Codeception.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PHPCI/Plugin/Codeception.php b/PHPCI/Plugin/Codeception.php index f2e580c7..bd168145 100644 --- a/PHPCI/Plugin/Codeception.php +++ b/PHPCI/Plugin/Codeception.php @@ -69,8 +69,8 @@ class Codeception implements \PHPCI\Plugin return false; } - $cmd = $codecept . ' run -c "%s"'; - $success = $this->phpci->executeCommand($cmd, $this->phpci->buildPath . $configPath); + $cmd = 'cd "%s" && ' . $codecept . ' run -c "%s"'; + $success = $this->phpci->executeCommand($cmd, $this->phpci->buildPath, $this->phpci->buildPath . $configPath); return $success; }