From 02678e65ba41380bae604a41f43e8260b504cc0c Mon Sep 17 00:00:00 2001 From: Kubik-Rubik Date: Fri, 30 Oct 2015 14:04:36 +0100 Subject: [PATCH] Fix for Windows to make sure to run the build command to generate AcceptanceTester --- RoboFile.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/RoboFile.php b/RoboFile.php index 3be30d4..291bae0 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -58,7 +58,8 @@ class RoboFile extends \Robo\Tasks $this->runSelenium(); - $this->_exec('php' . $this->extension . ' vendor/bin/codecept build'); + // Make sure to Run the Build Command to Generate AcceptanceTester + $this->_exec('php' . $this->extension . ' vendor/codeception/codeception/codecept build'); $this->taskCodecept() ->arg('--steps') @@ -113,7 +114,7 @@ class RoboFile extends \Robo\Tasks $this->runSelenium(); // Make sure to Run the Build Command to Generate AcceptanceTester - $this->_exec("php vendor/bin/codecept build"); + $this->_exec('php' . $this->extension . ' vendor/codeception/codeception/codecept build'); if (!$pathToTestFile) {