]> source.dussan.org Git - nextcloud-server.git/commitdiff
Don't swallow errors in console.php
authorChristian Kampka <christian@kampka.net>
Sat, 28 Feb 2015 11:31:11 +0000 (12:31 +0100)
committerChristian Kampka <christian@kampka.net>
Sat, 28 Feb 2015 11:31:11 +0000 (12:31 +0100)
console.php

index af58aacd25ad1d74f24b9050cd2d26fe81618383..9e6240d92cd8a5a1f4e5b1a6f643ae7f9a1a1737 100644 (file)
@@ -58,4 +58,5 @@ try {
 } catch (Exception $ex) {
        echo "An unhandled exception has been thrown:" . PHP_EOL;
        echo $ex;
+       exit(1);
 }