diff options
-rw-r--r-- | sbopkglint.d/50-icons.t.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbopkglint.d/50-icons.t.sh b/sbopkglint.d/50-icons.t.sh index e3297f4..1398cff 100644 --- a/sbopkglint.d/50-icons.t.sh +++ b/sbopkglint.d/50-icons.t.sh @@ -64,7 +64,7 @@ check_image() { if [ -n "$size" ]; then actualsize="$( identify "$f" | sed -n 's,.* \([0-9][0-9]*x[0-9][0-9]*\) .*,\1,p' )" if [ "$size" != "$actualsize" ]; then - warn "incorrectly sized (or named) icon $f (should be $actualsize)" + warn "$f: icon is $actualsize, but is in a dir with $size in the name. resize it, or rename the dir." fi fi } |