This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch hboutemy-sha512 in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git
commit 959b1726b73f2d8d39b9d1e49d08f835cc2fa154 Author: Hervé Boutemy <[email protected]> AuthorDate: Sat Apr 30 16:38:23 2022 +0200 only publish sha512, skip md5+sha1+sha256 --- build/publish.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/publish.sh b/build/publish.sh index b6cdcd1..e9015f8 100755 --- a/build/publish.sh +++ b/build/publish.sh @@ -51,9 +51,6 @@ cd ${VERSION} for dist in darwin-amd64.zip linux-amd64.zip windows-amd64.zip src.zip src.tar.gz do FILE=mvnd-${VERSION}-${dist} - md5 -q ${FILE} > ${FILE}.md5 - shasum -a 1 -b ${FILE} | cut -d ' ' -f 1 > ${FILE}.sha1 - shasum -a 256 -b ${FILE} | cut -d ' ' -f 1 > ${FILE}.sha256 shasum -a 512 -b ${FILE} | cut -d ' ' -f 1 > ${FILE}.sha512 gpg --detach-sign --armor ${FILE} done
