From 1631281dc114575d5bd848411f091a55c6db200d Mon Sep 17 00:00:00 2001 From: David Pagini Date: Mon, 10 Jul 2017 10:02:08 -0400 Subject: [PATCH] Updating behat copy target. --- src/Robo/Commands/Setup/SettingsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Robo/Commands/Setup/SettingsCommand.php b/src/Robo/Commands/Setup/SettingsCommand.php index 3ab91ca98..8b96253c6 100644 --- a/src/Robo/Commands/Setup/SettingsCommand.php +++ b/src/Robo/Commands/Setup/SettingsCommand.php @@ -133,7 +133,7 @@ public function behat() { if (!file_exists($this->projectBehatLocalConfigFile)) { $this->say("Generating Behat configuration files..."); $result = $this->taskFilesystemStack() - ->copy($this->getConfigValue('blt.root') . '/template/tests/behat/behat.yml', $this->getConfigValue('repo.root') . '/test/behat/behat.yml') + ->copy($this->getConfigValue('blt.root') . '/template/tests/behat/behat.yml', $this->getConfigValue('repo.root') . '/tests/behat/behat.yml') ->copy($this->getConfigValue('blt.root') . '/template/tests/behat/example.local.yml', $this->defaultBehatLocalConfigFile) ->copy($this->defaultBehatLocalConfigFile, $this->projectBehatLocalConfigFile) ->stopOnFail()