Skip to content

Commit

Permalink
Merge pull request #4960 from cakephp/issue-4956
Browse files Browse the repository at this point in the history
Add error highlighting to error message.
  • Loading branch information
markstory committed Oct 25, 2014
2 parents c965137 + c4dbab4 commit 02218d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Shell/Task/ExtractTask.php
Expand Up @@ -199,7 +199,9 @@ public function main() {
$this->_output = $response . DS;
break;
} else {
$this->err('The directory path you supplied was not found. Please try again.');
$this->err('');
$this->err('<error>The directory path you supplied was ' .
'not found. Please try again.</error>');
}
$this->out();
}
Expand Down

0 comments on commit 02218d1

Please sign in to comment.