You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by iw...@apache.org on 2022/05/29 08:26:35 UTC

[hadoop] branch branch-2.10 updated: HADOOP-16985. Handle release package related issues (#1957)

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

iwasakims pushed a commit to branch branch-2.10
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-2.10 by this push:
     new c5f161e7557 HADOOP-16985. Handle release package related issues (#1957)
c5f161e7557 is described below

commit c5f161e7557a83cbce9764568ff9b7742adb67b7
Author: Vinayakumar B <vi...@apache.org>
AuthorDate: Tue Apr 14 18:01:46 2020 +0530

    HADOOP-16985. Handle release package related issues (#1957)
    
    (cherry picked from commit 4d24d99e854e1718270a75807f7779a623758247)
---
 dev-support/bin/create-release                                 | 4 +++-
 hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index e4679f1d2c0..82f79a30619 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -599,10 +599,12 @@ function signartifacts
 
   big_console_header "Signing the release"
 
-  for i in ${ARTIFACTS_DIR}/*; do
+  run cd "${ARTIFACTS_DIR}"
+  for i in *; do
     ${GPG} --use-agent --armor --output "${i}.asc" --detach-sig "${i}"
     sha512sum --tag "${i}" > "${i}.sha512"
   done
+  run cd "${BASEDIR}"
 
   if [[ "${ASFRELEASE}" = true ]]; then
     echo "Fetching the Apache Hadoop KEYS file..."
diff --git a/hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml b/hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml
index 41c4fb60721..4d28cdf6237 100644
--- a/hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml
+++ b/hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml
@@ -50,6 +50,7 @@
         <exclude>**/build/**</exclude>
         <exclude>**/file:/**</exclude>
         <exclude>**/SecurityAuth.audit*</exclude>
+        <exclude>patchprocess/**</exclude>
       </excludes>
     </fileSet>
   </fileSets>


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org