diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-06 15:28:47 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-06 15:28:47 -0400 |
commit | 74502ce21040ee57fca9f2e37a8e43888920a506 (patch) | |
tree | d7c84e014d09639f8a5626b16cb269426c7842a3 | |
parent | 0622668cc62481493e67b1858c7ce0ab6a2d1f7f (diff) | |
download | sbo-maintainer-tools-74502ce21040ee57fca9f2e37a8e43888920a506.tar.gz |
fix wrong mime type for xpm
-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 54393e4..e3297f4 100644 --- a/sbopkglint.d/50-icons.t.sh +++ b/sbopkglint.d/50-icons.t.sh @@ -48,7 +48,7 @@ check_image() { PNG|png) check_mime $f $mime image/png ;; GIF|gif) check_mime $f $mime image/gif ;; JPG|jpg|JPEG|jpeg) check_mime $f $mime image/jpeg ;; - XPM|xpm) check_mime $f $mime image/xpmi ;; + XPM|xpm) check_mime $f $mime image/x-xpmi ;; SVG|svg|SVGZ|svgz) check_mime $f $mime image/svg+xml ;; BMP|bmp) check_mime $f $mime image/bmp ;; ICO|ico) check_mime $f $mime image/vnd.microsoft.icon ;; |