One more try for logo copying

Again, this might not work, but I cannot find snipe-logo-lg.png anywhere in the repo
This commit is contained in:
snipe 2021-03-09 20:41:47 -08:00
parent 6e8aaddb40
commit 0dd38c4a9b

View file

@ -42,8 +42,8 @@ class SettingsSeeder extends Seeder
// Copy the logos from the img/demo directory
Storage::disk('public')->put(public_path('img/demo/snipe-logo.png'), file_get_contents(public_path('uploads/snipe-logo.png')));
Storage::disk('public')->put(public_path('img/demo/snipe-logo-lg.png'), file_get_contents(public_path('uploads/snipe-logo.png')));
Storage::disk('public')->put(public_path('uploads/snipe-logo.png'), file_get_contents(public_path('img/demo/snipe-logo.png')));
Storage::disk('public')->put(public_path('uploads/snipe-logo-lg.png'), file_get_contents(public_path('img/demo/snipe-logo-lg.png')));
}
}