From 75adb12ac9452871c9555adb07287a5cb1354755 Mon Sep 17 00:00:00 2001 From: Craig Condit Date: Wed, 28 Feb 2024 16:57:53 -0600 Subject: [PATCH] [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