Skip to content

Commit

Permalink
Output to stderr, not stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed May 25, 2013
1 parent caec0ab commit c0039f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/Task/ExtractTask.php
Expand Up @@ -232,7 +232,7 @@ public function execute() {

$this->_output = rtrim($this->_output, DS) . DS;
if (!$this->_isPathUsable($this->_output)) {
$this->out(__d('cake_console', 'The output directory %s was not found or writable.', $this->_output));
$this->err(__d('cake_console', 'The output directory %s was not found or writable.', $this->_output));
return $this->_stop();
}

Expand Down

0 comments on commit c0039f6

Please sign in to comment.