Minor - remove exit

pull/2487/head
jmontoyaa 7 years ago
parent 4d218ea3b7
commit 11b2381b97
  1. 4
      main/install/index.php

@ -814,7 +814,7 @@ if (@$_POST['step2']) {
];
updateEnvFile($distFile, $envFile, $params);
(new Dotenv())->load($envFile);
exit;
// Load Symfony Kernel
$kernel = new Kernel('dev', true);
$application = new Application($kernel);
@ -823,7 +823,7 @@ exit;
$input = new ArrayInput([]);
$command = $application->find('doctrine:schema:create');
$result = $command->run($input, new ConsoleOutput());
var_dump($result);exit;
// No errors
if ($result == 0) {
// Boot kernel and get the doctrine from Symfony container

Loading…
Cancel
Save