Skip to content

Commit

Permalink
The vendor:publish command had wrong paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki authored May 29, 2018
1 parent 2ef9453 commit c0b9d31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ScheduleServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ class ScheduleServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/config/schedule.php' => config_path('schedule.php'),
__DIR__.'/../config/schedule.php' => config_path('schedule.php'),
], 'config');

$this->publishes([
__DIR__.'/database/migrations/2018_05_19_135648_schedules.php' => database_path('migrations/2018_05_19_135648_schedules.php'),
__DIR__.'/../database/migrations/2018_05_19_135648_schedules.php' => database_path('migrations/2018_05_19_135648_schedules.php'),
], 'migration');
}

Expand All @@ -31,4 +31,4 @@ public function register()
{
//
}
}
}

0 comments on commit c0b9d31

Please sign in to comment.