From 116087928dfc2ddae719510b286529616d5f5073 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 16 Jun 2025 18:01:59 -0600 Subject: [PATCH] Strip metadata from converted images. --- files/scripts/compress_image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/scripts/compress_image.sh b/files/scripts/compress_image.sh index af14362..7b48afb 100755 --- a/files/scripts/compress_image.sh +++ b/files/scripts/compress_image.sh @@ -75,7 +75,7 @@ if [[ -n "$in_size" && "$size" != "$in_size" ]]; then usage 1 fi -convert_exe="`which convert`" +convert_exe="`which convert` -strip" if [[ "$convert_exe" == "" ]]; then echo "ERROR: 'convert' command could not be found, " echo "please install 'imagemagick'."