summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-03-02 01:40:57 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-02 01:40:57 -0800
commit9c79b1fc6dd74c701adc20a867c5e4816c3accc4 (patch)
tree0f762245a427930961674aa001272abb5b3ffb14
parent58ec0ea734694cbe8009498a276ef5137aec721d (diff)
parentbf01327cd0447d9b642250227fe74096fbb6d46a (diff)
downloadnextcloud-server-9c79b1fc6dd74c701adc20a867c5e4816c3accc4.tar.gz
nextcloud-server-9c79b1fc6dd74c701adc20a867c5e4816c3accc4.zip
Merge pull request #14608 from kampka/master
Don't swallow errors in 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);
}