Remove a check for an unused variable

Left over from a refactoring

https://github.com/nextcloud/server/pull/1940

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2018-04-23 11:53:47 +02:00
parent 431ccb6386
commit 4fd697e733
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 1 additions and 3 deletions

View File

@ -141,9 +141,7 @@ class Installer {
\OC_App::setupBackgroundJobs($info['background-jobs']);
//run appinfo/install.php
if(!isset($data['noinstall']) or $data['noinstall']==false) {
self::includeAppScript($basedir . '/appinfo/install.php');
}
self::includeAppScript($basedir . '/appinfo/install.php');
$appData = OC_App::getAppInfo($appId);
OC_App::executeRepairSteps($appId, $appData['repair-steps']['install']);