Skip to content

Commit

Permalink
add symlink_path configurable
Browse files Browse the repository at this point in the history
add symlink_path configurable
  • Loading branch information
Shipu authored Apr 16, 2020
1 parent f7ea85e commit a473a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Providers/ThemevelServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ThemevelServiceProvider extends ServiceProvider
public function boot()
{
if (!File::exists(public_path('Themes')) && config('theme.symlink') && File::exists(config('theme.theme_path'))) {
App::make('files')->link(config('theme.theme_path'), public_path('Themes'));
App::make('files')->link(config('theme.theme_path'), config('theme.symlink_path', public_path('Themes')));
}
}

Expand Down

0 comments on commit a473a6b

Please sign in to comment.