Skip to content

Commit

Permalink
fixed config paths #6
Browse files Browse the repository at this point in the history
  • Loading branch information
jadjoubran committed Nov 11, 2015
1 parent e941f1a commit 176952c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LaravelServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../Config/generators.php' => config_path('generators.php')
__DIR__.'/../config/generators.php' => config_path('generators.php')
]);
}

Expand All @@ -34,6 +34,6 @@ public function register()
'LaravelAngular\Generators\Console\Commands\AngularService',
]);

$this->mergeConfigFrom(__DIR__ . '/../Config/generators.php', 'generators');
$this->mergeConfigFrom(__DIR__ . '/../config/generators.php', 'generators');
}
}

0 comments on commit 176952c

Please sign in to comment.