Avoid setting the update whitelist in require command on newly created files and when the lock file is disabled
parent
e6749d8717
commit
257d2ce889
|
@ -236,7 +236,6 @@ EOT
|
||||||
->setClassMapAuthoritative($authoritative)
|
->setClassMapAuthoritative($authoritative)
|
||||||
->setApcuAutoloader($apcu)
|
->setApcuAutoloader($apcu)
|
||||||
->setUpdate(true)
|
->setUpdate(true)
|
||||||
->setUpdateWhitelist(array_keys($requirements))
|
|
||||||
->setWhitelistTransitiveDependencies($input->getOption('update-with-dependencies'))
|
->setWhitelistTransitiveDependencies($input->getOption('update-with-dependencies'))
|
||||||
->setWhitelistAllDependencies($input->getOption('update-with-all-dependencies'))
|
->setWhitelistAllDependencies($input->getOption('update-with-all-dependencies'))
|
||||||
->setIgnorePlatformRequirements($input->getOption('ignore-platform-reqs'))
|
->setIgnorePlatformRequirements($input->getOption('ignore-platform-reqs'))
|
||||||
|
@ -244,6 +243,12 @@ EOT
|
||||||
->setPreferLowest($input->getOption('prefer-lowest'))
|
->setPreferLowest($input->getOption('prefer-lowest'))
|
||||||
;
|
;
|
||||||
|
|
||||||
|
// if no lock is present, or the file is brand new, we do not do a
|
||||||
|
// partial update as this is not supported by the Installer
|
||||||
|
if (!$this->newlyCreated && $composer->getConfig()->get('lock')) {
|
||||||
|
$install->setUpdateWhitelist(array_keys($requirements));
|
||||||
|
}
|
||||||
|
|
||||||
$status = $install->run();
|
$status = $install->run();
|
||||||
if ($status !== 0) {
|
if ($status !== 0) {
|
||||||
$this->revertComposerFile(false);
|
$this->revertComposerFile(false);
|
||||||
|
|
Loading…
Reference in New Issue