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

ccondit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-release.git


The following commit(s) were added to refs/heads/master by this push:
     new 75adb12  [YUNIKORN-2463] Don't exclude component LICENSE/NOTICE files 
(#173)
75adb12 is described below

commit 75adb12ac9452871c9555adb07287a5cb1354755
Author: Craig Condit <ccon...@apache.org>
AuthorDate: Wed Feb 28 16:57:53 2024 -0600

    [YUNIKORN-2463] Don't exclude component LICENSE/NOTICE files (#173)
    
    Closes: #173
---
 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: issues-unsubscr...@yunikorn.apache.org
For additional commands, e-mail: issues-h...@yunikorn.apache.org

Reply via email to