Skip to content

Commit

Permalink
Merge pull request #979 from haakco/4.x
Browse files Browse the repository at this point in the history
[4.x] Fix for Can't locate path: <.../vendor/laravel/telescope/src/Storage/migrations>
  • Loading branch information
driesvints authored Nov 5, 2020
2 parents 14d7be9 + 10566e0 commit 266d9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TelescopeServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private function registerPublishing()
{
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/Storage/migrations' => database_path('migrations'),
__DIR__.'/../database/migrations' => database_path('migrations'),
], 'telescope-migrations');

$this->publishes([
Expand Down

0 comments on commit 266d9c3

Please sign in to comment.