Skip to content

Commit fedc956

Browse files
xPawsebastianbergmann
authored andcommitted
Print Migration failed exception message
1 parent af5e4a9 commit fedc956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TextUI/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ private function migrateConfiguration(string $filename): void
812812

813813
print 'Migrated configuration: ' . $filename . PHP_EOL;
814814
} catch (Throwable $t) {
815-
print 'Migration failed' . PHP_EOL;
815+
print 'Migration failed: ' . $t->getMessage() . PHP_EOL;
816816

817817
exit(TestRunner::EXCEPTION_EXIT);
818818
}

0 commit comments

Comments
 (0)