This is an automated email from the ASF dual-hosted git repository.
ccondit pushed a commit to branch branch-1.5
in repository https://gitbox.apache.org/repos/asf/yunikorn-release.git
The following commit(s) were added to refs/heads/branch-1.5 by this push:
new 7a84ca1 [YUNIKORN-2463] Don't exclude component LICENSE/NOTICE files
7a84ca1 is described below
commit 7a84ca1c102620d70f4f77cc98886f8d8b6fd57d
Author: Craig Condit <[email protected]>
AuthorDate: Wed Feb 28 16:54:41 2024 -0600
[YUNIKORN-2463] Don't exclude component LICENSE/NOTICE files
---
tools/build-release.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/build-release.py b/tools/build-release.py
index cd92b4a..1fe5c22 100755
--- a/tools/build-release.py
+++ b/tools/build-release.py
@@ -143,7 +143,7 @@ def build_release(email_address):
# Function passed in as a filter to the tar command to keep tar as clean as
possible
def exclude_files(tarinfo):
file_name = os.path.basename(tarinfo.name)
- exclude = [".DS_Store", ".git", ".github", ".gitignore", ".asf.yaml",
"LICENSE", "NOTICE"]
+ exclude = [".DS_Store", ".git", ".github", ".gitignore", ".asf.yaml"]
if file_name in exclude:
print("exclude file from tarball %s" % tarinfo.name)
return None
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]