You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/07/31 12:41:12 UTC

[flink] branch release-1.6 updated: [FLINK-9978][release] Include relative path in source release sha file

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

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


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

commit f7b3495679c6b42ed091b10df07f870e24fd4495
Author: zentol <ch...@apache.org>
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}