From c0039f642ed32011498badac74368990e55d6089 Mon Sep 17 00:00:00 2001 From: Mischa ter Smitten Date: Sat, 25 May 2013 23:19:31 +0200 Subject: [PATCH] Output to stderr, not stdout --- lib/Cake/Console/Command/Task/ExtractTask.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Console/Command/Task/ExtractTask.php b/lib/Cake/Console/Command/Task/ExtractTask.php index 37ce302f64a..2ca6a4e11aa 100644 --- a/lib/Cake/Console/Command/Task/ExtractTask.php +++ b/lib/Cake/Console/Command/Task/ExtractTask.php @@ -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(); }