Skip to content

Commit

Permalink
Fix for lowercased schema folder when baking plugin skel
Browse files Browse the repository at this point in the history
  • Loading branch information
majna committed Jul 28, 2011
1 parent 25682db commit 29e4cad
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 @@ -98,7 +98,7 @@ public function bake($plugin) {
if (strtolower($looksGood) == 'y') {
$Folder = new Folder($this->path . $plugin);
$directories = array(
'Config' . DS . 'schema',
'Config' . DS . 'Schema',
'Model' . DS . 'Behavior',
'Model' . DS . 'Datasource',
'Console' . DS . 'Command' . DS . 'Task',
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Console/Command/Task/PluginTaskTest.php
Expand Up @@ -86,7 +86,7 @@ public function testBakeFoldersAndFiles() {
$this->assertTrue(is_dir($path), 'No plugin dir %s');

$directories = array(
'Config' . DS . 'schema',
'Config' . DS . 'Schema',
'Model' . DS . 'Behavior',
'Model' . DS . 'Datasource',
'Console' . DS . 'Command' . DS . 'Task',
Expand Down

0 comments on commit 29e4cad

Please sign in to comment.