From 0f978642380c593f46448c4fcd91c23649bf3451 Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Fri, 3 Nov 2017 12:26:31 -0700 Subject: [PATCH] Add shasum computation to download-binaries script Signed-off-by: Joffrey F --- script/release/download-binaries | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script/release/download-binaries b/script/release/download-binaries index 5d01f5f75..bef5430f4 100755 --- a/script/release/download-binaries +++ b/script/release/download-binaries @@ -30,3 +30,8 @@ mkdir $DESTINATION wget -O $DESTINATION/docker-compose-Darwin-x86_64 $BASE_BINTRAY_URL/docker-compose-Darwin-x86_64 wget -O $DESTINATION/docker-compose-Linux-x86_64 $BASE_BINTRAY_URL/docker-compose-Linux-x86_64 wget -O $DESTINATION/docker-compose-Windows-x86_64.exe $APPVEYOR_URL + +echo -e "\n\nCopy the following lines into the integrity check table in the release notes:\n\n" +cd $DESTINATION +ls | xargs sha256sum | sed 's/ / | /g' | sed -r 's/([^ |]+)/`\1`/g' +cd -