adding try/catch + switch to config object as provided by the server container
This commit is contained in:
parent
6c4b650524
commit
6929549dad
|
@ -8,10 +8,11 @@
|
|||
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
try {
|
||||
require_once 'lib/base.php';
|
||||
|
||||
// Don't do anything if ownCloud has not been installed yet
|
||||
if (!OC_Config::getValue('installed', false)) {
|
||||
if (!\OC::$server->getConfig()->getSystemValue('installed', false)) {
|
||||
echo "Console can only be used once ownCloud has been installed" . PHP_EOL;
|
||||
exit(0);
|
||||
}
|
||||
|
@ -34,3 +35,7 @@ foreach(OC_App::getAllApps() as $app) {
|
|||
}
|
||||
}
|
||||
$application->run();
|
||||
} catch (Exception $ex) {
|
||||
echo "An unhandled exception has been thrown:" . PHP_EOL;
|
||||
echo $ex;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue