mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
fix: setup storage message shows when path has been setup
This commit is contained in:
parent
140f06427c
commit
937e902972
1 changed files with 2 additions and 2 deletions
|
@ -85,8 +85,8 @@ class InitCommand extends Command
|
|||
);
|
||||
}
|
||||
|
||||
if (Setting::get('media_path')) {
|
||||
$this->info('You can now set up the storage with `php artisan koel:storage`.');
|
||||
if (!Setting::get('media_path')) {
|
||||
$this->info('You can set up the storage with `php artisan koel:storage`.');
|
||||
}
|
||||
|
||||
$this->info('Again, visit 📙 ' . config('koel.misc.docs_url') . ' for more tips and tweaks.');
|
||||
|
|
Loading…
Reference in a new issue