Avoid double warnings about composer.json when running outdated, fixes #8958
parent
6630519882
commit
a17bbec842
|
@ -156,7 +156,7 @@ class Application extends BaseApplication
|
|||
}
|
||||
|
||||
// prompt user for dir change if no composer.json is present in current dir
|
||||
if ($io->isInteractive() && !$newWorkDir && !in_array($commandName, array('', 'list', 'init', 'about', 'help', 'diagnose', 'self-update', 'global', 'create-project'), true) && !file_exists(Factory::getComposerFile())) {
|
||||
if ($io->isInteractive() && !$newWorkDir && !in_array($commandName, array('', 'list', 'init', 'about', 'help', 'diagnose', 'self-update', 'global', 'create-project', 'outdated'), true) && !file_exists(Factory::getComposerFile())) {
|
||||
$dir = dirname(getcwd());
|
||||
$home = realpath(getenv('HOME') ?: getenv('USERPROFILE') ?: '/');
|
||||
|
||||
|
|
Loading…
Reference in New Issue