This is an automated email from the ASF dual-hosted git repository. jongyoul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 289e954db5 [ZEPPELIN-6029] Set COPYFILE_DISABLE=1 for macOS tar (#4774) 289e954db5 is described below commit 289e954db5a2cd4577a8ecd0437ef2f7353cbf55 Author: Cheng Pan <cheng...@apache.org> AuthorDate: Sat Jul 6 15:26:19 2024 +0800 [ZEPPELIN-6029] Set COPYFILE_DISABLE=1 for macOS tar (#4774) * [ZEPPELIN-6029] Add --disable-copyfile for macOS tar * COPYFILE_DISABLE=1 --- dev/common_release.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/common_release.sh b/dev/common_release.sh index 2875e5784b..0d39a58931 100644 --- a/dev/common_release.sh +++ b/dev/common_release.sh @@ -22,6 +22,7 @@ if [[ -z "${TAR}" ]]; then TAR="tar" if [ "$(uname -s)" = "Darwin" ]; then + export COPYFILE_DISABLE=1 TAR="tar --no-mac-metadata --no-xattrs --no-fflags" fi fi