Update clear thumbnails script to work with lots of files

This commit is contained in:
Timothy Warren 2019-12-02 15:29:24 -05:00
parent fec671e3cd
commit 59ba0f49c7
1 changed files with 7 additions and 7 deletions

View File

@ -32,19 +32,19 @@ class ClearThumbnails extends BaseCommand {
$imgDir = realpath(__DIR__ . '/../../public/images'); $imgDir = realpath(__DIR__ . '/../../public/images');
$paths = [ $paths = [
'anime/*.jpg',
'anime/*.png',
'anime/*.webp',
'avatars/*.gif', 'avatars/*.gif',
'avatars/*.jpg', 'avatars/*.jpg',
'avatars/*.png', 'avatars/*.png',
'avatars/*.webp', 'avatars/*.webp',
'anime/*.jpg',
'anime/*.png',
'anime/*.webp',
'manga/*.jpg',
'manga/*.png',
'manga/*.webp',
'characters/*.jpg', 'characters/*.jpg',
'characters/*.png', 'characters/*.png',
'characters/*.webp', 'characters/*.webp',
'manga/*.jpg',
'manga/*.png',
'manga/*.webp',
'people/*.jpg', 'people/*.jpg',
'people/*.png', 'people/*.png',
'people/*.webp', 'people/*.webp',
@ -52,7 +52,7 @@ class ClearThumbnails extends BaseCommand {
foreach($paths as $path) foreach($paths as $path)
{ {
$cmd = "rm -rf {$imgDir}/{$path}"; $cmd = "find {$imgDir} -path \"*/{$path}\" | xargs rm -f";
exec($cmd); exec($cmd);
} }
} }