Skip to content

Commit

Permalink
Fix the creation of serverless.yml to the correct directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Mar 16, 2023
1 parent 7caf9ec commit 7f497f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BrefServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function boot(Dispatcher $dispatcher, LogManager $logManager, FailedJobPr

if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../stubs/serverless.yml' => config_path('serverless.yml'),
__DIR__ . '/../stubs/serverless.yml' => base_path('serverless.yml'),
], 'serverless-config');

$this->publishes([
Expand Down

0 comments on commit 7f497f9

Please sign in to comment.