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:27:21 UTC

[hadoop] branch branch-3.2 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-3.2
in repository https://gitbox.apache.org/repos/asf/hadoop.git


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

commit db4c32b03fd9922b786d9f74b7aea6281db88676
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 d14c0073a5f..f0874fd7fd5 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -639,10 +639,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 b1e039fd501..3fe1ebeff5a 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