Skip to content

Commit

Permalink
Merge pull request #5831 from rchavik/2.6-fix-layout-dir
Browse files Browse the repository at this point in the history
2.6 - Fix: "bake plugin" generates incorrect directory for View/Layouts
  • Loading branch information
markstory committed Feb 4, 2015
2 parents 970cb81 + acd32b7 commit 195c348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/Task/PluginTask.php
Expand Up @@ -123,7 +123,7 @@ public function bake($plugin) {
'Test' . DS . 'Fixture',
'View' . DS . 'Elements',
'View' . DS . 'Helper',
'View' . DS . 'Layout',
'View' . DS . 'Layouts',
'webroot' . DS . 'css',
'webroot' . DS . 'js',
'webroot' . DS . 'img',
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Console/Command/Task/PluginTaskTest.php
Expand Up @@ -115,7 +115,7 @@ public function testBakeFoldersAndFiles() {
'Test' . DS . 'Fixture',
'View' . DS . 'Elements',
'View' . DS . 'Helper',
'View' . DS . 'Layout',
'View' . DS . 'Layouts',
'webroot' . DS . 'css',
'webroot' . DS . 'js',
'webroot' . DS . 'img',
Expand Down

0 comments on commit 195c348

Please sign in to comment.