summaryrefslogtreecommitdiffstats
path: root/console.php
diff options
context:
space:
mode:
authorChristian Kampka <christian@kampka.net>2015-02-28 12:31:11 +0100
committerChristian Kampka <christian@kampka.net>2015-02-28 12:31:11 +0100
commitbf01327cd0447d9b642250227fe74096fbb6d46a (patch)
tree26707936a555bf881e7131a999f448b2e207f42b /console.php
parent42f6448da239c1b716ae514a513c4985eec48ef5 (diff)
downloadnextcloud-server-bf01327cd0447d9b642250227fe74096fbb6d46a.tar.gz
nextcloud-server-bf01327cd0447d9b642250227fe74096fbb6d46a.zip
Don't swallow errors in console.php
Diffstat (limited to 'console.php')
-rw-r--r--console.php1
1 files changed, 1 insertions, 0 deletions
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);
}