Fix type error
parent
952256247c
commit
b1bd22f37c
|
@ -351,7 +351,7 @@ class Factory
|
||||||
$io->loadConfiguration($config);
|
$io->loadConfiguration($config);
|
||||||
|
|
||||||
// load existing Composer\InstalledVersions instance if available and scripts/plugins are allowed, as they might need it
|
// load existing Composer\InstalledVersions instance if available and scripts/plugins are allowed, as they might need it
|
||||||
if (!$disablePlugins && !$disableScripts && !class_exists('Composer\InstalledVersions', false) && file_exists($installedVersionsPath = $config->get('vendor-dir').'/composer/InstalledVersions.php')) {
|
if (false === $disablePlugins && false === $disableScripts && !class_exists('Composer\InstalledVersions', false) && file_exists($installedVersionsPath = $config->get('vendor-dir').'/composer/InstalledVersions.php')) {
|
||||||
include $installedVersionsPath;
|
include $installedVersionsPath;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue