You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2022/04/30 14:38:27 UTC

[maven-mvnd] branch hboutemy-sha512 created (now 959b172)

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a change to branch hboutemy-sha512
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git


      at 959b172  only publish sha512, skip md5+sha1+sha256

This branch includes the following new commits:

     new 959b172  only publish sha512, skip md5+sha1+sha256

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-mvnd] 01/01: only publish sha512, skip md5+sha1+sha256

Posted by hb...@apache.org.
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 <hb...@apache.org>
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