Skip to content

Commit

Permalink
Migrate-Command: Errors nicht unterdrücken (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan committed May 21, 2024
1 parent b828b7b commit f8f0366
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/command/migrate.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}

$io->error(sprintf('%s %d of %d migrations, aborted with "%s".', $fake ? 'Faked' : 'Executed', $countMigrated, count($paths), basename($path)));

return Command::FAILURE;
}

return Command::FAILURE;
}

private function migrate($path): void
Expand Down

0 comments on commit f8f0366

Please sign in to comment.