Revert "MDL-47395 added cli_error() visual cue"

This reverts commit eb60c78c77.
This commit is contained in:
Sam Hemelryk 2014-10-02 17:39:49 +13:00
parent 251089fe44
commit 454034351b

View file

@ -171,7 +171,7 @@ function cli_problem($text) {
* @return void (does not return) * @return void (does not return)
*/ */
function cli_error($text, $errorcode=1) { function cli_error($text, $errorcode=1) {
fwrite(STDERR, "\xE2\x9D\x8C ". $text); fwrite(STDERR, $text);
fwrite(STDERR, "\n"); fwrite(STDERR, "\n");
die($errorcode); die($errorcode);
} }