Repository: systemml Updated Branches: refs/heads/master 1cbfdef3f -> 0ba9e74b9
[SYSTEMML-1890] Update Release Distribution policy Project: http://git-wip-us.apache.org/repos/asf/systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/0ba9e74b Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/0ba9e74b Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/0ba9e74b Branch: refs/heads/master Commit: 0ba9e74b96d2638e0ca2d9af569cdcc26676a78e Parents: 1cbfdef Author: Arvind Surve <[email protected]> Authored: Tue Sep 5 09:59:46 2017 -0700 Committer: Arvind Surve <[email protected]> Committed: Tue Sep 5 09:59:46 2017 -0700 ---------------------------------------------------------------------- dev/release/release-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/systemml/blob/0ba9e74b/dev/release/release-build.sh ---------------------------------------------------------------------- diff --git a/dev/release/release-build.sh b/dev/release/release-build.sh index 040ec36..66e0a88 100755 --- a/dev/release/release-build.sh +++ b/dev/release/release-build.sh @@ -289,8 +289,8 @@ if [[ "$RELEASE_PREPARE" == "true" ]]; then for i in *.zip *.tgz; do gpg --output $i.asc --detach-sig --armor $i; done rm -f *.md5 for i in *.zip *.tgz; do openssl md5 -hex $i | sed 's/MD5(\([^)]*\))= \([0-9a-f]*\)/\2 *\1/' > $i.md5; done - rm -f *.sha - for i in *.zip *.tgz; do shasum $i > $i.sha; done + rm -f *.sha512 + for i in *.zip *.tgz; do shasum -a 512 $i > $i.sha512; done cd .. #exit $RELEASE_VERSION-$RELEASE_RC/
