Browse Source

Moving cache disabling earlier so it takes
effect.
Refs #2063

mark_story 14 years ago
parent
commit
0e47c98c91
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/Cake/Console/Command/BakeShell.php

+ 3 - 3
lib/Cake/Console/Command/BakeShell.php

@@ -51,6 +51,9 @@ class BakeShell extends Shell {
  */
 	public function startup() {
 		parent::startup();
+		Configure::write('debug', 2);
+		Configure::write('Cache.disable', 1);
+
 		$task = Inflector::classify($this->command);
 		if (isset($this->{$task}) && !in_array($task, array('Project', 'DbConfig'))) {
 			if (isset($this->params['connection'])) {
@@ -65,9 +68,6 @@ class BakeShell extends Shell {
  * @return mixed
  */
 	public function main() {
-		Configure::write('debug', 2);
-		Configure::write('Cache.disable', 1);
-
 		if (!is_dir($this->DbConfig->path)) {
 			$path = $this->Project->execute();
 			if (!empty($path)) {