Repository: incubator-systemml Updated Branches: refs/heads/master c197f20cc -> c528b769c
[MINOR] Add .tgz to the list of files to sign Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/03ae3afc Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/03ae3afc Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/03ae3afc Branch: refs/heads/master Commit: 03ae3afcb8a79c0d6b3d487d815b4f1ce039dd3a Parents: c197f20 Author: Luciano Resende <[email protected]> Authored: Fri Jan 13 13:07:18 2017 -0800 Committer: Luciano Resende <[email protected]> Committed: Fri Jan 13 13:07:18 2017 -0800 ---------------------------------------------------------------------- dev/release/release-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/03ae3afc/dev/release/release-build.sh ---------------------------------------------------------------------- diff --git a/dev/release/release-build.sh b/dev/release/release-build.sh index 2681a5c..f4073f7 100755 --- a/dev/release/release-build.sh +++ b/dev/release/release-build.sh @@ -256,9 +256,9 @@ if [[ "$RELEASE_PREPARE" == "true" ]]; then cd svn-release-staging/$RELEASE_VERSION-$RELEASE_RC/ rm -f *.asc - for i in *.jar *.zip *.gz; do gpg --output $i.asc --detach-sig --armor $i; done + for i in *.jar *.zip *.gz *.tgz; do gpg --output $i.asc --detach-sig --armor $i; done rm -f *.md5 - for i in *.jar *.zip *.gz; do openssl md5 -hex $i | sed 's/MD5(\([^)]*\))= \([0-9a-f]*\)/\2 *\1/' > $i.md5; done + for i in *.jar *.zip *.gz *.tgz; do openssl md5 -hex $i | sed 's/MD5(\([^)]*\))= \([0-9a-f]*\)/\2 *\1/' > $i.md5; done cd .. #exit $RELEASE_VERSION-$RELEASE_RC/
