From 53e38095914ba4e7ba2d78952334652277363aed Mon Sep 17 00:00:00 2001 From: AngelJumbo Date: Sun, 23 Mar 2025 09:50:30 -0500 Subject: [PATCH] fix dysplay thumbnail --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a99592f..5ec8e31 100755 --- a/build.sh +++ b/build.sh @@ -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