Ensured install tool knows the install command is the only one

This commit is contained in:
Alejandro Celaya
2018-09-16 18:47:42 +02:00
parent 13c3629cd6
commit d4168bebc6
4 changed files with 4 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ class InstallApplicationFactory implements FactoryInterface
$isUpdate
);
$app->add($command);
$app->setDefaultCommand($command->getName());
$app->setDefaultCommand($command->getName(), true);
return $app;
}