Fix handling of promises for uninstall step when updating to a different install source

main
Jordi Boggiano 3 years ago
parent 28bc0cecf1
commit 78d7792eb8
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -492,9 +492,15 @@ class InstallationManager
$promise = $installer->update($repo, $initial, $target);
$this->markForNotification($target);
} else {
$this->getInstaller($initialType)->uninstall($repo, $initial);
$promise = $this->getInstaller($initialType)->uninstall($repo, $initial);
if (!$promise instanceof PromiseInterface) {
$promise = \React\Promise\resolve();
}
$installer = $this->getInstaller($targetType);
$promise = $installer->install($repo, $target);
$promise->then(function () use ($installer, $repo, $target) {
return $installer->install($repo, $target);
});
}
return $promise;

Loading…
Cancel
Save