1
0
Fork 0

Fixed no lock file was written when setting writeLock to true and executeOperations to false

pull/6099/head
Yanick Witschi 2017-01-11 13:37:13 +01:00 committed by Jordi Boggiano
parent f29a302391
commit 0ea93df252
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ class Installer
$this->eventDispatcher->dispatchPackageEvent(constant($event), $this->devMode, $policy, $pool, $installedRepo, $request, $operations, $operation); $this->eventDispatcher->dispatchPackageEvent(constant($event), $this->devMode, $policy, $pool, $installedRepo, $request, $operations, $operation);
} }
if ($this->executeOperations) { if ($this->executeOperations || $this->writeLock) {
$localRepo->write(); $localRepo->write();
} }
} }