fix dysplay thumbnail

This commit is contained in:
AngelJumbo
2025-03-23 09:50:30 -05:00
parent 4164e617dc
commit 53e3809591
+1 -1
View File
@@ -38,7 +38,7 @@ generate_thumbnails() {
local img_filename="${img##*/}"
local thumbnail="thumbnails/$section_name/$img_filename"
echo "Generating thumbnail ($current_image/$total_images): $img -> $thumbnail"
magick "$img" -resize 200x200 "$thumbnail"
convert "$img" -resize 200x200 "$thumbnail"
done
done