aajisaka commented on a change in pull request #1243: HADOOP-16494. Add SHA-512 
checksum to release artifact to comply with the release distribution policy
URL: https://github.com/apache/hadoop/pull/1243#discussion_r311408732
 
 

 ##########
 File path: dev-support/bin/create-release
 ##########
 @@ -641,7 +641,7 @@ function signartifacts
 
   for i in ${ARTIFACTS_DIR}/*; do
     ${GPG} --use-agent --armor --output "${i}.asc" --detach-sig "${i}"
-    ${GPG} --print-mds "${i}" > "${i}.mds"
+    shasum -a 512 "${i}" > "${i}.sha512"
 
 Review comment:
   Thank you for your review! Reflected your comment.
   I used `sha512sum` instead of `shasum` because `shasum` does not have 
`--tag` option in the release environment.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to