Skip to content

Commit 4d24d99

Browse files
committed
HADOOP-16985. Handle release package related issues (apache#1957)
1 parent 4db598e commit 4d24d99

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
@@ -651,10 +651,12 @@ function signartifacts
651651

652652
big_console_header "Signing the release"
653653

654-
for i in ${ARTIFACTS_DIR}/*; do
654+
run cd "${ARTIFACTS_DIR}"
655+
for i in *; do
655656
${GPG} --use-agent --armor --output "${i}.asc" --detach-sig "${i}"
656657
sha512sum --tag "${i}" > "${i}.sha512"
657658
done
659+
run cd "${BASEDIR}"
658660

659661
if [[ "${ASFRELEASE}" = true ]]; then
660662
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
@@ -56,6 +56,7 @@
5656
<exclude>**/build/**</exclude>
5757
<exclude>**/file:/**</exclude>
5858
<exclude>**/SecurityAuth.audit*</exclude>
59+
<exclude>patchprocess/**</exclude>
5960
</excludes>
6061
</fileSet>
6162
</fileSets>

0 commit comments

Comments
 (0)