This is an automated email from the ASF dual-hosted git repository. arvid pushed a commit to branch release_utils in repository https://gitbox.apache.org/repos/asf/flink-connector-shared-utils.git
The following commit(s) were added to refs/heads/release_utils by this push: new 6991578 Check for GNU tar to avoid MAC OS specific files 6991578 is described below commit 6991578ff9a37a0ab0fbce67b86daf639840a47c Author: Arvid Heise <ar...@apache.org> AuthorDate: Wed Aug 20 16:01:21 2025 +0200 Check for GNU tar to avoid MAC OS specific files GNU tar bundles extended attributes from HFS+ into the tar which breaks builds on other OS --- check_environment.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/check_environment.sh b/check_environment.sh index 62c5677..16bd983 100755 --- a/check_environment.sh +++ b/check_environment.sh @@ -46,6 +46,9 @@ check_program_available "\${SHASUM}" ${SHASUM} if ! (sed --version 2>/dev/null | grep -q "GNU"); then echo "Warning: You are not using GNU sed. Some scripts may not work. If you are using Mac, install gnu-sed (brew install gnu-sed) and make sure that sed points to it (alias sed=\"gsed\")." fi +if ! (tar --version 2>/dev/null | grep -q "GNU"); then + echo "Warning: You are not using GNU tar. Some scripts may not work. If you are using Mac, install gnu-tar (brew install gnu-tar) and make sure that sed points to it (alias tar=\"gtar\")." +fi echo -e "\nMaven/Java version:" ${MVN} --version