You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2022/04/05 21:00:21 UTC

[tinkerpop] 01/02: Ignored some new website binaries (e.g. images) in validate-distribution.sh CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 8996ba5dabb6f5abe8d21ece33f3da59150dc3f0
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Apr 5 16:58:49 2022 -0400

    Ignored some new website binaries (e.g. images) in validate-distribution.sh CTR
---
 bin/validate-distribution.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 14411e6dcd..5c54faecc9 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -133,7 +133,7 @@ if [ "${TYPE}" = "SOURCE" ]; then
 cd ${DIR_NAME}
 echo -n "* checking source files ... "
 find . -type f | xargs -n1 -I {} file {} --mime | grep 'charset=binary' | cut -f1 -d: |
-  grep -Pv '^\./docs/(static|(site/home))/(img|images)/((icons|logos|policy|resources)/)?[^/]*\.(png|jpg|ico|pdf)$' |
+  grep -Pv '^\./docs/(static|(site/home))/(img|images|fonts)/((icons|logos|policy|resources|providers|community|use-cases|gremlin|download)/)?[^/]*\.(png|jpg|ico|pdf|eot|otf|woff|woff2|ttf)$' |
   grep -Pv '^\./docs/gremlint/(src|public)/[^/]*\.(png|jpg|ico)$' |
   grep -Pv '^./gremlin-dotnet/src/images/[^/]*\.(png|ico)$' |
   grep -Pv '^./gremlin-dotnet/.*\.snk$' |