Skip to content

Commit

Permalink
final fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jul 10, 2015
1 parent 755510e commit d95e7a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MediaLibraryServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class MediaLibraryServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../resources/config/laravel-medialibrary.php.stub' => $this->app->configPath('laravel-medialibrary.php'),
__DIR__.'/../resources/config/laravel-medialibrary.php' => $this->app->configPath().'/'.'laravel-medialibrary.php',
], 'config');

if (!class_exists('CreateMediaTable')) {
Expand All @@ -31,7 +31,7 @@ public function boot()
$timestamp = date('Y_m_d_His', time());

$this->publishes([
__DIR__.'/../resources/migrations/create_media_table.php' => $this->app->basePath('database/migrations/'.$timestamp.'_create_media_table.php'),
__DIR__.'/../resources/migrations/create_media_table.php.stub' => $this->app->basePath().'/'.'database/migrations/'.$timestamp.'_create_media_table.php',
], 'migrations');
}
}
Expand Down

0 comments on commit d95e7a1

Please sign in to comment.