Skip to content

Commit 28b7764

Browse files
committed
=Fixes the service provider to only publish one template at a time
1 parent 25ad83f commit 28b7764

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CodeGeneratorServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ public function boot()
2525
], 'default');
2626

2727
$this->publishes([
28-
__DIR__ . '/templates/default' => base_path('resources\\codegenerator-templates\\default'),
28+
__DIR__ . '/Templates/default' => base_path('resources\\codegenerator-templates\\default'),
2929
], 'default');
3030

3131
$this->publishes([
32-
__DIR__ . '/templates/default-collective' => base_path('resources\\codegenerator-templates\\default-collective'),
32+
__DIR__ . '/Templates/default-collective' => base_path('resources\\codegenerator-templates\\default-collective'),
3333
], 'collective-template');
3434

3535
$this->createDirectory(base_path('resources\\codegenerator-files'));

0 commit comments

Comments
 (0)