You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2019/09/25 05:57:38 UTC

[zeppelin] branch master updated: [HOTFIX] Add md5 when publishing

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

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 1eb77b5  [HOTFIX] Add md5 when publishing
1eb77b5 is described below

commit 1eb77b519b7f79d2924c51584623ae68211d284a
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Wed Sep 25 13:57:06 2019 +0800

    [HOTFIX] Add md5 when publishing
---
 dev/publish_release.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/publish_release.sh b/dev/publish_release.sh
index b6bf39b..4745de9 100755
--- a/dev/publish_release.sh
+++ b/dev/publish_release.sh
@@ -158,6 +158,7 @@ function publish_to_maven() {
   for file in $(find . -type f); do
     echo "${GPG_PASSPHRASE}" | gpg --passphrase-fd 0 --output "${file}.asc" \
       --detach-sig --armor "${file}"
+    md5 -q "${file}" > "${file}.md5"
     ${SHASUM} -a 1 "${file}" | cut -f1 -d' ' > "${file}.sha1"
   done