mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #18439 from owncloud/fix-appmanagement-install
[app management] fix dependency check on install
This commit is contained in:
commit
d725de505e
1 changed files with 1 additions and 1 deletions
|
|
@ -1139,7 +1139,7 @@ class OC_App {
|
|||
|
||||
// check for required dependencies
|
||||
$dependencyAnalyzer = new DependencyAnalyzer(new Platform($config), $l);
|
||||
$missing = $dependencyAnalyzer->analyze($app);
|
||||
$missing = $dependencyAnalyzer->analyze($info);
|
||||
if (!empty($missing)) {
|
||||
$missingMsg = join(PHP_EOL, $missing);
|
||||
throw new \Exception(
|
||||
|
|
|
|||
Loading…
Reference in a new issue