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 29374fd [YUNIKORN-2463] [ADDENDUM] Don't add NOTICE/LICENSE twice
29374fd is described below
commit 29374fd631c84897d9540a0bec26ed76e12df92f
Author: Craig Condit <[email protected]>
AuthorDate: Wed Feb 28 17:04:04 2024 -0600
[YUNIKORN-2463] [ADDENDUM] Don't add NOTICE/LICENSE twice
---
tools/build-release.py | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tools/build-release.py b/tools/build-release.py
index 1fe5c22..51a386a 100755
--- a/tools/build-release.py
+++ b/tools/build-release.py
@@ -104,8 +104,6 @@ def build_release(email_address):
tarball_path = os.path.join(staging_dir, tarball_name)
print("creating tarball %s" % tarball_path)
with tarfile.open(tarball_path, "w:gz") as tar:
- tar.add(os.path.join(release_base, "LICENSE"),
arcname=release_package_name + "/LICENSE")
- tar.add(os.path.join(release_base, "NOTICE"),
arcname=release_package_name + "/NOTICE")
tar.add(release_base, arcname=release_package_name,
filter=exclude_files)
# generate yunikorn-web reproducible binaries
@@ -132,8 +130,6 @@ def build_release(email_address):
tarball_path = os.path.join(staging_dir, tarball_name)
print("creating tarball %s" % tarball_path)
with tarfile.open(tarball_path, "w:gz") as tar:
- tar.add(os.path.join(release_base, "LICENSE"),
arcname=release_package_name + "/LICENSE")
- tar.add(os.path.join(release_base, "NOTICE"),
arcname=release_package_name + "/NOTICE")
tar.add(release_base, arcname=release_package_name,
filter=exclude_files)
write_checksum(tarball_path, tarball_name)
if email_address:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]