Use "else if" to remove one level of indentation.
This commit is contained in:
parent
f130caa4a2
commit
b8dbec0da4
|
@ -72,20 +72,18 @@ class Upgrade extends Command {
|
||||||
|
|
||||||
$updater->upgrade();
|
$updater->upgrade();
|
||||||
return self::ERROR_SUCCESS;
|
return self::ERROR_SUCCESS;
|
||||||
|
} else if(\OC_Config::getValue('maintenance', false)) {
|
||||||
|
//Possible scenario: ownCloud core is updated but an app failed
|
||||||
|
$output->writeln('ownCloud is in maintenance mode');
|
||||||
|
$output->write('Maybe an upgrade is already in process. Please check the '
|
||||||
|
. 'logfile (data/owncloud.log). If you want to re-run the '
|
||||||
|
. 'upgrade procedure, remove the "maintenance mode" from '
|
||||||
|
. 'config.php and call this script again.'
|
||||||
|
, true);
|
||||||
|
return self::ERROR_MAINTENANCE_MODE;
|
||||||
} else {
|
} else {
|
||||||
if(\OC_Config::getValue('maintenance', false)) {
|
$output->writeln('ownCloud is already latest version');
|
||||||
//Possible scenario: ownCloud core is updated but an app failed
|
return self::ERROR_UP_TO_DATE;
|
||||||
$output->writeln('ownCloud is in maintenance mode');
|
|
||||||
$output->write('Maybe an upgrade is already in process. Please check the '
|
|
||||||
. 'logfile (data/owncloud.log). If you want to re-run the '
|
|
||||||
. 'upgrade procedure, remove the "maintenance mode" from '
|
|
||||||
. 'config.php and call this script again.'
|
|
||||||
, true);
|
|
||||||
return self::ERROR_MAINTENANCE_MODE;
|
|
||||||
} else {
|
|
||||||
$output->writeln('ownCloud is already latest version');
|
|
||||||
return self::ERROR_UP_TO_DATE;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue