commit: 2ab0c90eb31aeed1a4a95d79181d2dbcb42dbe7d Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Jul 24 22:51:29 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Jul 24 22:51:29 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=2ab0c90e
find-binary-files.sh: Account for image/x-xpixmap Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> find-binary-files.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/find-binary-files.sh b/find-binary-files.sh index db3ecb8..12e6fea 100755 --- a/find-binary-files.sh +++ b/find-binary-files.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2014-2019 Ulrich Müller +# Copyright 2014-2022 Ulrich Müller # Distributed under the terms of the GNU GPL version 2 or later # Author: Ulrich Müller <[email protected]> @@ -33,6 +33,7 @@ while read line; do "image/svg; charset=us-ascii") ;; # SVG image "image/svg+xml; charset=us-ascii") ;; # SVG image "image/x-xpmi; charset=us-ascii") ;; # XPM image + "image/x-xpixmap; charset=us-ascii") ;; # XPM image "message/rfc822; charset=us-ascii") ;; "message/rfc822; charset=utf-8") ;; *)
