Ignore the COMPOSER env var when executing global scope commands, fixes #9259
parent
159bb84fa6
commit
6bf136489f
|
@ -75,6 +75,12 @@ EOT
|
||||||
return parent::run($input, $output);
|
return parent::run($input, $output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The COMPOSER env var should not apply to the global execution scope
|
||||||
|
if (getenv('COMPOSER')) {
|
||||||
|
putenv('COMPOSER');
|
||||||
|
unset($_SERVER['COMPOSER']);
|
||||||
|
}
|
||||||
|
|
||||||
// change to global dir
|
// change to global dir
|
||||||
$config = Factory::createConfig();
|
$config = Factory::createConfig();
|
||||||
$home = $config->get('home');
|
$home = $config->get('home');
|
||||||
|
|
Loading…
Reference in New Issue