Fixes #6326 -- Fix installer dependencies.

This commit is contained in:
Buster Neece 2023-06-08 08:36:04 -05:00
parent 5238522a0f
commit 0c06451b7f
No known key found for this signature in database
1 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,8 @@ $console = new Symfony\Component\Console\Application(
App\Version::FALLBACK_VERSION
);
$console->add(new App\Installer\Command\InstallCommand($environment));
$installCommand = new App\Installer\Command\InstallCommand();
$installCommand->setEnvironment($environment);
$console->add($installCommand);
$console->run();