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 2021/05/05 12:03:51 UTC

[tinkerpop] 01/02: Allowed validation to pass image files in gremlint for the binary files check in the source distribution 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 cfb7372e1a444d93c674fbe8dae69bce81fa441c
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed May 5 06:35:23 2021 -0400

    Allowed validation to pass image files in gremlint for the binary files check in the source distribution CTR
---
 bin/validate-distribution.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index f3c386b..bfd06ce 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -140,6 +140,7 @@ 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/gremlint/(src|public)/[^/]*\.(png|jpg|ico)$' |
   grep -Pv '^./gremlin-dotnet/src/images/[^/]*\.(png|ico)$' |
   grep -Pv '^./gremlin-dotnet/.*\.snk$' |
   grep -Pv '^./gremlin-server/src/test/resources/[^/]*\.(p12|jks)$' |