Skip to content

Commit d09e1bc

Browse files
authored
fix(CreateCommand): match the seeder directory when installing the plugin (#156)
1 parent 432d1a6 commit d09e1bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Command/CreateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function __invoke(): int
4848
return AbstractCommand::FAILURE;
4949
}
5050
$createDirectors = [
51-
$pluginPath, $pluginPath . '/src', $pluginPath . '/Database', $pluginPath . '/Database/Migrations', $pluginPath . '/Database/Seeder', $pluginPath . '/web',
51+
$pluginPath, $pluginPath . '/src', $pluginPath . '/Database', $pluginPath . '/Database/Migrations', $pluginPath . '/Database/Seeders', $pluginPath . '/web',
5252
];
5353
foreach ($createDirectors as $directory) {
5454
if (! mkdir($directory, 0o755, true) && ! is_dir($directory)) {

0 commit comments

Comments
 (0)