From 4a3fcbfbc2099b7f00c262bcfcf96e69eef2f7c5 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 20 Jan 2016 22:01:01 +0100 Subject: [PATCH] Fix path to extension stub directory Refs #743. --- framework/core/src/Console/Command/GenerateExtensionCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Console/Command/GenerateExtensionCommand.php b/framework/core/src/Console/Command/GenerateExtensionCommand.php index 5b5a8bccc..9aefaf983 100644 --- a/framework/core/src/Console/Command/GenerateExtensionCommand.php +++ b/framework/core/src/Console/Command/GenerateExtensionCommand.php @@ -101,7 +101,7 @@ class GenerateExtensionCommand extends AbstractCommand protected function copyStub($destination, $replacements = []) { - $this->recursiveCopy(__DIR__.'/../../stubs/extension', $destination, $replacements); + $this->recursiveCopy(__DIR__.'/../../../stubs/extension', $destination, $replacements); } protected function recursiveCopy($src, $dst, $replacements = [])