commit: 30f6e1692d5182a8084e1a20054c5f61471574de Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Jun 4 17:13:04 2017 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Jun 4 17:13:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=30f6e169
find-binary-files.sh: Suppress false positives. 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 367cc75..a3b1415 100755 --- a/find-binary-files.sh +++ b/find-binary-files.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2014-2015 Gentoo Foundation +# Copyright 2014-2017 Gentoo Foundation # Distributed under the terms of the GNU GPL version 2 or later # Author: Ulrich Müller <[email protected]> @@ -34,6 +34,7 @@ find . \( -path ./distfiles -o -path ./local -o -path ./metadata \ application/*"; charset=utf-8") ;; "image/svg+xml; charset=us-ascii") ;; # SVG image "image/x-xpmi; charset=us-ascii") ;; # XPM image + "message/rfc822; charset=us-ascii") ;; *) size=$(stat -c "%s" "${path}") echo "${path#./}: ${type} (size=${size})"
