From: Christian Kampka Date: Sat, 28 Feb 2015 11:31:11 +0000 (+0100) Subject: Don't swallow errors in console.php X-Git-Tag: v8.1.0alpha1~368^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bf01327cd0447d9b642250227fe74096fbb6d46a;p=nextcloud-server.git Don't swallow errors in console.php --- diff --git a/console.php b/console.php index af58aacd25a..9e6240d92cd 100644 --- a/console.php +++ b/console.php @@ -58,4 +58,5 @@ try { } catch (Exception $ex) { echo "An unhandled exception has been thrown:" . PHP_EOL; echo $ex; + exit(1); }