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

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


The following commit(s) were added to refs/heads/master by this push:
     new 817a093  [FLINK-9978][release] Include relative path in source release 
sha file
817a093 is described below

commit 817a09377474d66049a249985dbe90b3e76ac62d
Author: zentol <[email protected]>
AuthorDate: Fri Jul 27 08:32:27 2018 +0200

    [FLINK-9978][release] Include relative path in source release sha file
    
    This closes #6436.
---
 tools/releasing/create_source_release.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/releasing/create_source_release.sh 
b/tools/releasing/create_source_release.sh
index 9329802..47b2176 100755
--- a/tools/releasing/create_source_release.sh
+++ b/tools/releasing/create_source_release.sh
@@ -70,7 +70,8 @@ rsync -a \
 
 tar czf ${RELEASE_DIR}/flink-${RELEASE_VERSION}-src.tgz flink-$RELEASE_VERSION
 gpg --armor --detach-sig ${RELEASE_DIR}/flink-$RELEASE_VERSION-src.tgz
-$SHASUM ${RELEASE_DIR}/flink-$RELEASE_VERSION-src.tgz > 
${RELEASE_DIR}/flink-$RELEASE_VERSION-src.tgz.sha512
+cd ${RELEASE_DIR}
+$SHASUM flink-$RELEASE_VERSION-src.tgz > flink-$RELEASE_VERSION-src.tgz.sha512
 
 cd ${CURR_DIR}
 rm -rf ${CLONE_DIR}

Reply via email to