You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2019/03/26 08:07:52 UTC

[cloudstack-cloudmonkey] branch master updated: performrelease: emit sha512 based checksum file

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

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-cloudmonkey.git


The following commit(s) were added to refs/heads/master by this push:
     new fbdd9c2  performrelease: emit sha512 based checksum file
fbdd9c2 is described below

commit fbdd9c2ce8821b6df50c48e00af66a5a8f04e1ea
Author: Rohit Yadav <ro...@shapeblue.com>
AuthorDate: Tue Mar 26 13:37:19 2019 +0530

    performrelease: emit sha512 based checksum file
    
    Signed-off-by: Rohit Yadav <ro...@shapeblue.com>
---
 performrelease.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/performrelease.sh b/performrelease.sh
index ddc16d0..f87e0a7 100755
--- a/performrelease.sh
+++ b/performrelease.sh
@@ -105,8 +105,8 @@ fi
 echo 'md5'
 gpg -v --print-md MD5 apache-cloudstack-cloudmonkey-$version-src.tar.bz2 > apache-cloudstack-cloudmonkey-$version-src.tar.bz2.md5
 
-echo 'sha'
-gpg -v --print-md SHA512 apache-cloudstack-cloudmonkey-$version-src.tar.bz2 > apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha
+echo 'sha512'
+gpg -v --print-md SHA512 apache-cloudstack-cloudmonkey-$version-src.tar.bz2 > apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512
 
 echo 'verify'
 gpg -v --verify apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc apache-cloudstack-cloudmonkey-$version-src.tar.bz2
@@ -138,11 +138,11 @@ if [ "$committosvn" == "yes" ]; then
   cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2 .
   cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc .
   cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.md5 .
-  cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha .
+  cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512 .
   svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2
   svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc
   svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.md5
-  svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha
+  svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512
   svn commit -m "Committing release candidate artifacts for $version to dist/dev/cloudstack in preparation for release vote"
 fi