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

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 889b28b5f41 Fix false positive in verification step (#69648)
889b28b5f41 is described below

commit 889b28b5f41f8c71757f46440e617900b9117551
Author: Tzu-ping Chung <[email protected]>
AuthorDate: Thu Jul 9 15:56:58 2026 +0800

    Fix false positive in verification step (#69648)
---
 java-sdk/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java-sdk/README.md b/java-sdk/README.md
index 01c68139a92..2b2f8dcdac7 100644
--- a/java-sdk/README.md
+++ b/java-sdk/README.md
@@ -408,7 +408,7 @@ manager, before sending the vote — should run against the 
source package in
 
    ```bash
    find apache-airflow-java-sdk-<VERSION>/ -type f \
-     -exec sh -c 'file "$1" | grep -qv text && echo "$1"' _ {} \;
+     -exec sh -c 'file -b "$1" | grep -qviE "text|json|xml|empty" && echo 
"$1"' _ {} \;
    ```
 
    This should print nothing.

Reply via email to