Skip to content

Commit db4c32b

Browse files
vinayakumarbiwasakims
authored andcommitted
HADOOP-16985. Handle release package related issues (#1957)
(cherry picked from commit 4d24d99)
1 parent cc52627 commit db4c32b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

dev-support/bin/create-release

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,10 +639,12 @@ function signartifacts
639639

640640
big_console_header "Signing the release"
641641

642-
for i in ${ARTIFACTS_DIR}/*; do
642+
run cd "${ARTIFACTS_DIR}"
643+
for i in *; do
643644
${GPG} --use-agent --armor --output "${i}.asc" --detach-sig "${i}"
644645
sha512sum --tag "${i}" > "${i}.sha512"
645646
done
647+
run cd "${BASEDIR}"
646648

647649
if [[ "${ASFRELEASE}" = true ]]; then
648650
echo "Fetching the Apache Hadoop KEYS file..."

hadoop-assemblies/src/main/resources/assemblies/hadoop-src.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<exclude>**/build/**</exclude>
5151
<exclude>**/file:/**</exclude>
5252
<exclude>**/SecurityAuth.audit*</exclude>
53+
<exclude>patchprocess/**</exclude>
5354
</excludes>
5455
</fileSet>
5556
</fileSets>

0 commit comments

Comments
 (0)